gpt4 book ai didi

Extjs图表整数 Axis

转载 作者:行者123 更新时间:2023-12-02 00:24:33 24 4
gpt4 key购买 nike

有人可以知道如何将 extjs 图表 Axis 格式化为整数吗?数字 Axis 也给出小数值。我只想要 Axis 中的整数值。

最佳答案

定义你的最小值和最大值,然后在你的数据数组上添加你的最大 Axis 值减一的 majorTickSteps,所以它比你的最大值小一

感谢@bittercoder 对 Sencha ExtJs 4.1.3 的 majorTickSteps 评论

axes: [{
type: 'Numeric',
position: 'left',
fields: ['data1', 'data2', 'data3'],
title: 'Number of Hits',
grid: {
odd: {
opacity: 1,
fill: '#ddd',
stroke: '#bbb',
'stroke-width': 1
}
},
minimum: 0,
maximum: 10,
majorTickSteps: 9 // one less than max
}, {
type: 'Category',
position: 'bottom',
fields: ['name'],
title: 'Month of the Year',
grid: true,
label: {
rotate: {
degrees: 315
}
}
}]

关于Extjs图表整数 Axis ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9376228/

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