本文介绍了最后的标签没有显示在高级图的阶梯标签中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个在x轴上显示日期标签的高图,当有超过10个日期时,我使用将总日期除以10并将结果值分步的逻辑。由于步骤值,它不显示最后的标签。
如果有人知道解决方案,请帮助。
我尝试了showLastLabel和endOnTick,但这些都不起作用。
xAxis:{
类别:xcategories ,
标签:{
step:getStep(chartJson.length)
}
}
函数getStep(jsonLength){
var step = 1;
if(jsonLength> = 10){
step =(parseInt)(jsonLength / 10);
}
返回步骤;;
解决方案
Set 参数为true
I have a highchart which shows date label on x-axis, When there are more than 10 dates I'm using a logic of dividing the total dates by 10 and giving the resulting value to step. Because of step value it is not showing the last label. Please help if anybody know's the solution.I tried with showLastLabel and endOnTick but these are not working.
xAxis: {
categories: xcategories,
labels: {
step: getStep(chartJson.length)
}
}
function getStep(jsonLength){
var step =1;
if(jsonLength>=10){
step= (parseInt)(jsonLength/10);
}
return step;;
}
解决方案
Set showLastLabel parameter as true
这篇关于最后的标签没有显示在高级图的阶梯标签中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!