gpt4 book ai didi

jqplot - jqplot中的双轴图

转载 作者:行者123 更新时间:2023-12-01 09:30:54 26 4
gpt4 key购买 nike

是否可以使用jqplot制作双轴图

任何人都可以分享相同的示例

最佳答案

有可能。


代码示例:

$(document).ready(function(){
$.jqplot('chart1', [
[54551.94,15192.79,37937.26,11417.67,11799.59,18377.53,49207.82,168235.42,16654.29,62145.78],
[132.19,2.99,6.09,50.38,1.44,4.41,25.25,3.37,68.60,2.14]
], {
seriesDefaults : {
renderer : $.jqplot.BarRenderer,
rendererOptions : {
highlightMouseOver : true,
barWidth : 10
}
},
legend : {
show : true,
placement : 'outsideGrid'
},

axes : {
xaxis : {
renderer : $.jqplot.CategoryAxisRenderer,
tickOptions : {
angle : 45
},
ticks : ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J']
},
yaxis : {
label : 'axis1',
renderer : $.jqplot.LogAxisRenderer
},
y2axis : {
label : 'axis2'
}
},
series : [{
yaxis : 'yaxis',
label : 'dataForAxis1'
}, {
yaxis : 'y2axis',
label : 'dataForAxis2'
}]
});
});

JSFiddle 示例:

EXAMPLE


文档:

See here供引用。

从上往下看第三个例子。

关于jqplot - jqplot中的双轴图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15495674/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com