<i id='MetLz'><tr id='MetLz'><dt id='MetLz'><q id='MetLz'><span id='MetLz'><b id='MetLz'><form id='MetLz'><ins id='MetLz'></ins><ul id='MetLz'></ul><sub id='MetLz'></sub></form><legend id='MetLz'></legend><bdo id='MetLz'><pre id='MetLz'><center id='MetLz'></center></pre></bdo></b><th id='MetLz'></th></span></q></dt></tr></i><div id='MetLz'><tfoot id='MetLz'></tfoot><dl id='MetLz'><fieldset id='MetLz'></fieldset></dl></div>

  1. <legend id='MetLz'><style id='MetLz'><dir id='MetLz'><q id='MetLz'></q></dir></style></legend>

    • <bdo id='MetLz'></bdo><ul id='MetLz'></ul>

      <tfoot id='MetLz'></tfoot>
    1. <small id='MetLz'></small><noframes id='MetLz'>

      将数据点动态添加到人力车图

      Dynamically Add Data Points To Rickshaw Graph(将数据点动态添加到人力车图)
        <tbody id='Ou8bM'></tbody>
          <legend id='Ou8bM'><style id='Ou8bM'><dir id='Ou8bM'><q id='Ou8bM'></q></dir></style></legend>

          <small id='Ou8bM'></small><noframes id='Ou8bM'>

            <tfoot id='Ou8bM'></tfoot>
            • <bdo id='Ou8bM'></bdo><ul id='Ou8bM'></ul>
              • <i id='Ou8bM'><tr id='Ou8bM'><dt id='Ou8bM'><q id='Ou8bM'><span id='Ou8bM'><b id='Ou8bM'><form id='Ou8bM'><ins id='Ou8bM'></ins><ul id='Ou8bM'></ul><sub id='Ou8bM'></sub></form><legend id='Ou8bM'></legend><bdo id='Ou8bM'><pre id='Ou8bM'><center id='Ou8bM'></center></pre></bdo></b><th id='Ou8bM'></th></span></q></dt></tr></i><div id='Ou8bM'><tfoot id='Ou8bM'></tfoot><dl id='Ou8bM'><fieldset id='Ou8bM'></fieldset></dl></div>
                本文介绍了将数据点动态添加到人力车图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                所以我正在使用 Rickshaw 图形库,我想知道如何动态添加点图表.

                So I'm using the Rickshaw graphing library and I was wondering how to dynamically add points to a graph.

                我有一个像这样实例化的图表:

                I have a graph instantiated like this:

                        @seriesData = [ [], [], [] ]
                        random = new Rickshaw.Fixtures.RandomData(150)
                
                
                        for (var i = 0; i < 50; i++) {
                            random.addData(self.seriesData)
                        }
                
                
                        @graph = new Rickshaw.Graph(
                            element: document.getElementById("chart")
                            width: 550
                            height: 300
                            renderer: 'area'
                            series: [
                                {
                                    color: "#c05020"
                                    data: self.seriesData[0]
                                    name: 'One'
                                }, {
                                    color: "#30c020"
                                    data: self.seriesData[1]
                                    name: 'Two'
                                }, {
                                    color: "#2791d7"
                                    data: self.seriesData[2]
                                    name: 'Three'
                                }
                            ]
                        )
                
                        @graph.render()
                
                        hoverDetail = new Rickshaw.Graph.HoverDetail(
                            graph: self.graph
                        )
                
                        legend = new Rickshaw.Graph.Legend(
                            graph: self.graph
                            element: document.getElementById('legend')
                
                        )
                
                        shelving = new Rickshaw.Graph.Behavior.Series.Toggle(
                            graph: self.graph
                            legend: legend
                        )
                
                        axes = new Rickshaw.Graph.Axis.Time(
                            graph: self.graph
                        )
                        axes.render()
                

                我有这样的数据通过 socket.io 进入:

                And I have data coming in through socket.io like this:

                    app.on('data',
                        (one, two, three) =>
                            // Dynamically add data points to graph
                    )
                

                我想知道如何将这三个点附加到图表中.我找不到这个库的任何好的文档.我知道它建立在 d3.js 之上,但我不确定如何将这些方法合并到我的图表中.

                And I was wondering how to append these three points to the graph. I can't find any good documentation for this library. I know it's built on top of d3.js, but I'm not sure how to incorporate these methods into my graph.

                任何帮助将不胜感激.

                推荐答案

                我设想了两种可以解决您的问题的方案:

                I envision two scenario that could solve your question:

                • 使用固定窗口系列流式数据
                • 利用 javascript 中的数组通过引用传递这一事实.这里
                • 提供了一个演示
                • Using the fixed Window Series for Streaming Data
                • leveraging the fact that arrays in javascript are passed by reference. A demo is available here

                .

                var data = [
                        {
                            data: [ { x: 0, y: 120 }, { x: 1, y: 890 }, { x: 2, y: 38 }, { x: 3, y: 70 }, { x: 4, y: 32 } ],
                            color: "#c05020"
                        }, {
                            data: [ { x: 0, y: 80 }, { x: 1, y: 200 }, { x: 2, y: 100 }, { x: 3, y: 520 }, { x: 4, y: 133 } ],
                            color: "#30c020"
                        }
                ];
                
                
                var graph = new Rickshaw.Graph( {
                    element: document.getElementById("chart"),
                    renderer: 'line',
                    height: 300,
                    width: 800,
                    series: data
                } );
                
                var y_ticks = new Rickshaw.Graph.Axis.Y( {
                    graph: graph,
                    orientation: 'left',
                    tickFormat: Rickshaw.Fixtures.Number.formatKMBT,
                    element: document.getElementById('y_axis'),
                } );
                
                graph.render();
                
                
                $('button#add').click(function() {
                    data.push({
                            data: [ { x: 0, y: 200 }, { x: 1, y: 390 }, { x: 2, y: 1000 }, { x: 3, y: 200 }, { x: 4, y: 230 } ],
                            color: "#6060c0"
                    });
                    graph.update();
                });
                

                这篇关于将数据点动态添加到人力车图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                quot;Each child in an array should have a unique key propquot; only on first time render of page(“数组中的每个孩子都应该有一个唯一的 key prop仅在第一次呈现页面时)
                Rails 3.1 ajax:success handling(Rails 3.1 ajax:成功处理)
                CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
                Ordinals in words javascript(javascript中的序数)
                getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)
                1. <legend id='EcCsu'><style id='EcCsu'><dir id='EcCsu'><q id='EcCsu'></q></dir></style></legend>

                  <tfoot id='EcCsu'></tfoot>

                    • <bdo id='EcCsu'></bdo><ul id='EcCsu'></ul>

                        <i id='EcCsu'><tr id='EcCsu'><dt id='EcCsu'><q id='EcCsu'><span id='EcCsu'><b id='EcCsu'><form id='EcCsu'><ins id='EcCsu'></ins><ul id='EcCsu'></ul><sub id='EcCsu'></sub></form><legend id='EcCsu'></legend><bdo id='EcCsu'><pre id='EcCsu'><center id='EcCsu'></center></pre></bdo></b><th id='EcCsu'></th></span></q></dt></tr></i><div id='EcCsu'><tfoot id='EcCsu'></tfoot><dl id='EcCsu'><fieldset id='EcCsu'></fieldset></dl></div>

                            <tbody id='EcCsu'></tbody>

                          <small id='EcCsu'></small><noframes id='EcCsu'>