Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想构建类似于示例中的图表的东西:barLineAnimated.html。我的问题是;我有超过 1 个系列,我喜欢将其渲染为条形,一个应该渲染为线条。我无法理解示例:示例中的 2 系列之一将以不同的方式呈现。
如何设置单个系列的渲染类型?
在 jqplot 构造函数中试试这个:
seriesDefaults : { renderer: $.jqplot.BarRenderer, rendererOptions : { barWidth: 30 } }, series : [{}, {}, {}, { renderer: $.jqplot.LineRenderer }]
您只能将一个系列设置为线条或条形......除非您要添加趋势线(这完全是不同的概念)。您可以在一个图中添加多个系列并以不同的渲染方式显示它们(条形图+线形图)