Flot graph - 实时图表绘制中的线宽

发布于 2024-12-13 15:54:56 字数 223 浏览 3 评论 0原文

我正在使用 jquery flot 绘制实时图表,并且我在图表中运行 10-15 条线 [线数是动态的,所以可能是 20 或更多],默认 lineWidth 为 1,对于选定的线我想更改lineWidth 为 3。

我更改了代码来为所选行设置 data[index].lineWidth = 3,但它不起作用。

任何人都可以帮忙解决这个问题,如何在运行实时浮点图时动态更改线宽?

谢谢

I am plotting realtime graph with jquery flot, and I am running 10-15 lines in the graph [count of line is dynamic, so could be some time 20 or more], Default lineWidth is 1, and for selected one I want to change lineWidth to 3.

I changed code to set data[index].lineWidth = 3 for selected line, but its not working.

Can anyone help about it, how to change lineWidth on the fly in running realtime flot graph ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缱倦旧时光 2024-12-20 15:54:56

属性“lineWidth”是行集合的成员。另外,调整系列外观后,您必须调用plot.draw()以使用新选项重新绘制。

对于示例

$(function () {
    var d1 = [];
     for (var i = 0; i < 14; i += 0.5)
         d1.push([i, Math.sin(i)]);

     var d2 = [[0, 3], [4, 8], [8, 5], [9, 13]];

     // a null signifies separate line segments
     var d3 = [[0, 12], [7, 12], null, [7, 2.5], [12, 2.5]];

     var somePlot = $.plot($("#placeholder"), [ d1, d2, d3 ]);

    somePlot.getData()[1].lines.lineWidth = 20;
    somePlot.draw();

});

在此输入图像描述

The property "lineWidth" is a member of the lines collection. Also, after you adjust your series appearance you have to make a call to plot.draw() to redraw with the new options.

For example:

$(function () {
    var d1 = [];
     for (var i = 0; i < 14; i += 0.5)
         d1.push([i, Math.sin(i)]);

     var d2 = [[0, 3], [4, 8], [8, 5], [9, 13]];

     // a null signifies separate line segments
     var d3 = [[0, 12], [7, 12], null, [7, 2.5], [12, 2.5]];

     var somePlot = $.plot($("#placeholder"), [ d1, d2, d3 ]);

    somePlot.getData()[1].lines.lineWidth = 20;
    somePlot.draw();

});

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文