在 jqplot 中可以使用堆叠烛台吗?
jqplot 中可以使用堆叠烛台图吗?我知道这是对它们的误用,但我需要能够在 x 轴上的同一点指定 y 轴上多个条目的起点和终点。我尝试过堆叠条形图,看起来我无法像使用烛台那样指定数据的起点和终点。
任何帮助将不胜感激:-)
谢谢
Are stacked candlestick graphs possible in jqplot? I know this is quite a misuse of them but I need a to be able to specify a start and end point for multiple entries on the y axis at the same point on the x axis. I've tried stacked bar graphs and it looks like I cant specify the start and end points of the data like I can with the candlesticks.
Any help would be greatly appreciated :-)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,显然是的。我使用了这里的示例代码。
蜡烛图示例
并添加了 stackSeries:true, seriesColors: ["red", " green"],并将系列加倍:行到
系列:[{renderer:$.jqplot.OHLCRenderer, rendererOptions:{candleStick:true}},{renderer:$.jqplot.OHLCRenderer, rendererOptions:{candleStick:true}}]
并将系列加倍。 $.jqplot('图表1',[ohlc,ohlc]
Yes, apparently they are. I used the sample code from here.
Candlestick Chart Sample
and added stackSeries:true, seriesColors: ["red", "green"], and doubled up the series: line to
series: [{renderer:$.jqplot.OHLCRenderer, rendererOptions:{candleStick:true}},{renderer:$.jqplot.OHLCRenderer, rendererOptions:{candleStick:true}}]
and doubled up the series. $.jqplot('chart1',[ohlc,ohlc]