score:1
Accepted answer
by default highcharts will round labels to two decimals. you can change that using yaxis.labels.formatter
. see:
yaxis: {
max: 33999.253,
min: 33999.219,
title: {
text: 'm',
style: {
color: '#000000',
fontweight: 'bold'
}
},
labels: {
formatter: function() {
return this.value;
},
style: {
color: '#000000'
}
}
},
and demo: http://jsfiddle.net/nzjug/4/
score:1
there is a simple solution for this,
use your own formatter for labels
yaxis: {
max: 33999.253,
min: 33999.219,
title: {
text: 'm',
style: {
color: '#000000',
fontweight: 'bold'
}
},
labels: {
style: {
color: '#000000'
},
formatter: function () {
return this.value
}
}
},
updated your fiddle here: http://jsfiddle.net/nzjug/5/
Source: stackoverflow.com
Related Query
- Highcharts repeating same label value on Y Axis
- Dual axis using percentage and absolute value to same serie in Highcharts
- Highcharts show plot value on x axis label
- highcharts - avoid repeating same date on x axis with different time
- How replicate the value of Y Axis on both sides of the axis in Highcharts
- Highcharts - How to start x axis from an arbitrary value
- Highcharts - Long multi-line y axis labels causing following label to be removed
- How to change axis label size when exporting in Highcharts / Highstock
- Highcharts axis label before first point
- Show value of last point as label or tooltip on Highcharts Stock Chart
- Highcharts label format with tickPositioner in a datetime x Axis
- Align y axis tick "outside" on highstock, so they are the same as on highcharts
- Getting the X Axis value in HighCharts
- Highcharts - stop Y axis value change on redraw
- Highcharts x axis label text wrapping lost on setting label step
- HighCharts - Show categories in x axis intead of the value of x in Bubble Chart
- Highcharts show the same yAxis start and end value with multiple data series
- How to position axis label in highcharts
- Axis Label Alignment in highcharts
- Highcharts assign label to to x-axis max value
- how to display 2 same highcharts without duplicate the code
- Negative value for categories axis in highcharts
- Display multiple points with exact same value in scatter HighCharts
- Highcharts - creating chart with same scale axis
- Highcharts Omits X Axis Label
- Calculating a min y axis value in highcharts
- Highcharts line chart all points disappear when have more than one points with same X Axis
- how to show column and area charts with different y axis with same category and same x axis in highcharts
- Highcharts align data label based on positive / negative value
- Get max value and label in series after zoom in JS HighCharts
More Query from same tag
- Highcharts skip columns when plotting
- Rails generates chart for .each do |x| using highcharts or any other chart API
- json in multiple pie chart using Highchart
- How to convert datetime string to UTC to plot points on Highcharts
- Highcharts Export Renderer Image - Only SVG visible
- Highcharts - drill down to multiple series in R
- Change colors on data points
- Creating highchart linechart with data using PHP (and Laravel)
- How to plot multiple lines in a single graph using HighChart with JSON
- iPad - Highcharts interferes with links in the drop down
- How can I replace the last datapoint in HighStock/HighCharts?
- stop redrawing chart on highcharts
- HighStock Area Charts - Add Two Series
- Highchart: Spline with clickable Symbols
- How to correctly create function for formatter on PHP in Yii2 Highcharts extension
- Highchart columnrange with scrollbar
- How to show a custom message box at last point, Highcharts
- Pie Chart keeps loading and never stops
- How to show other point property in bubble highcharts using tooltip
- How to align lines marker in middle/centre of the bars - High Charts
- Pass a varible as input to Date.UTC
- Disable Plotpoint legend on hover in Highcharts
- Highlight Highcharts Organization Chart nodes
- formatting all the markers for the hovering series in a HighCharts scatterplot
- Highstock, JSON and Android
- Highcharts gem not working
- Formatting the float numbers in Highcharts
- Highcharts / Highmaps with Angular - Cannot run demo
- Callback function doesn't work Highcharts PhantomJS
- Not able to animate solid gauge chart with Angular Highcharts