Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8563357
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:56:32+00:00 2026-06-11T16:56:32+00:00

Basicly, I need a tool that can draw realtime graphs for a collected data

  • 0

Basicly, I need a tool that can draw realtime graphs for a collected data that calculated by a node server.

I tried to install Graphite, but got no luck on the installation(newbie in linux results too much dependencies installation failures). So I’m looking for if there are other tools can do the similar jobb with easy install guide?

I also looked abit highcharts, but there is barely any documentation for node.js. If anyone has experienced these tools and give some advices would be much appreciated!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T16:56:33+00:00Added an answer on June 11, 2026 at 4:56 pm

    Without knowing what kind of analytics data you are calculating and what type of graph you are using it is a little difficult to give you a good example. But here it is anyway, this is for a simple scenario.

    When the server changes some analytics data, use socket.io to send a message to the client, containing the new analytics data. Something like this:

    io.sockets.emit('analyticsUpdate', x, y);
    

    On the client, create your Highcharts graph as normal but then add a load() event to the chart options, and use socket.io to retrieve the new data and update your chart like so:

        var chart;
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                type: 'spline',
                events: {
                    load: function() {
                        socket.on('analyticsUpdate', function (x, y) {
                             // Simple case where you have a single series
                             // and your data can simply be appended to the series
    
                             var series = this.series[0];
                             series.addPoint([x, y], true, true);
                        };
                    }
                }
            }
        });
    

    So whenever the server updates some analytics data, socket.io emits a message. The client is always listening for messages from the server, and so whenever it receives a new message it updates the graph.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basicly I need that my app sends some data to a server when the
I basicly need to be able to restrict the items that can be appended
What I basicly need is a big image that is clickable and links to
I need to develop an app that is using multithreading. Basicly, I have a
I need to build a push system in django, basicly its function is to
I have one question about Yii framework, and I need your help. Basicly, I
OK basicly what I am trying to do is make a script that will
I basicly need to load the whole XML file, add a new line with
Basicly, what I need for the program to do is to act a as
I need to export my query results from SQL Server 2008 to a CSV

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.