How to add extra tears(ticks) in highcharts? -
high charts
in addition this question, ask question here in thread.
how add tears(ticks), in such way, green bar datalabel, stay inside plotting area, rather, going out of plotting area or made hidden. jsfiddle
there lots of ways this. quickest 1 adding max value yaxis using yaxis.max.
yaxis: { allowdecimals: false, max: 6000 },
here working example: jsfiddle.
or
you can use combination of yaxis.tickamount , yaxis.tickinterval this;
yaxis: { allowdecimals: false, tickamount: 10, tickinterval: 1000 },
here working example: jsfiddle.
Comments
Post a Comment