jquery float,每个点的大小和颜色不同
我们可以更改 jquery flot 图中点的以下属性吗:
点的大小 :我基本上是在尝试绘制三维图。前两个维度是 x 和 y 值,第三个维度值将反映在点的大小中。值越大,点越大。
点的颜色:我再次尝试显示 x 和 y 值以外的属性。值越大,点越暗。
[编辑]:我试图单独控制点的这些属性,而不是整个图。
Can we change the following properties of the points in a jquery flot plot:
the size of dots : I am basically trying to plot a three dimensional graph. First two dimensions are the x and y values and the third dimension value will be reflected in the size of the points. Larger the value, larger the point.
the color of the dots: Again, am trying to display a property other than the x and y values. larger the value, darker the point.
[EDIT]: I am trying to control these properties for points individually and not for the whole plot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我现在明白你了。我能看到这样做的唯一方法是将回调函数传递给点符号选项:
在上面我正在调整每个其他点的半径大小:
此处示例
I understand you now. The only way I can see doing this is by passing a callback function to the point symbol option:
In the above I am adjusting the radius size for every other point:
EXAMPLE HERE