gpt4 book ai didi

jqplot - 如何缩短轴上的数字刻度

转载 作者:行者123 更新时间:2023-12-04 05:52:20 31 4
gpt4 key购买 nike

嗨,我正在使用 jqplot,有没有办法缩短数字轴上的刻度标签。假设有一个像这样的 y 系列 [100,250,125000000,14000000,300,..]。这里根据最大值轴被缩放并用大刻度值渲染。我想将这个刻度简化为使用 mill 或 bill 与轴渲染的数百万或数十亿。有任何想法吗?

提前致谢。

最佳答案

我在初始化时使用它,注意“formatString”选项,“.2F”意味着数字(浮点数)将在第二个小数点(####.##)后四舍五入,这只是一个问题找到您需要的正确格式字符串。

Plot = $j.jqplot('divPerformancePlot',[Data],{
title: Title,
axes: {
xaxis: {
renderer: $j.jqplot.DateAxisRenderer,
tickOptions: {
formatString: '%b %#d, %T'
},
numberTicks: 4
},
yaxis: {
tickOptions: {
formatString: '%.2f '
}
}
},
highlighter: {
sizeAdjust: 10,
show: true,
tooltipLocation: 'n',
useAxesFormatters: true
},
cursor: {
show: true,
zoom: true
}
});

关于jqplot - 如何缩短轴上的数字刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9930841/

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