score:1
Accepted answer
But what is the sense of creating this kind of chart? If the value goes down, must be lower than other values otherwise, the readability is fake... Of course, it is possible to achieve it by doing some custom changes in the output:
tooltip: {
formatter() {
return `${this.series.name}: ${Math.abs(this.y)}`
}
},
yAxis: {
labels: {
formatter() {
return Math.abs(this.value)
}
},
},
Demo: https://jsfiddle.net/BlackLabel/u68tb5od/
API: https://api.highcharts.com/highcharts/yAxis.labels.formatter
API: https://api.highcharts.com/highcharts/tooltip.formatter
Source: stackoverflow.com
Related Articles
- How to make label in highcharts area graph display absolute values instead of negative values?
- highcharts zero values results in graph half way instead at the bottom
- Make stack label disabled for a column in stacked column graph in Highcharts
- How to make the Y Axis values not start from 0 in highcharts? How to display forcefully display the last category data on X axis in HighCharts ?
- Highcharts display label for pie chart using html table as data source
- Highcharts - Stack Graph Display Average of all values
- Display negative Y values above zero instead below in highcharts
- HIGHCHARTS How to to make separate colors for shaded region and the line in Area Graph
- How to display the value instead of percentage in a pie chart using jquery Highcharts
- Highcharts graph X-axis label for different date ranges
- How to update new plotline values instead of removing and adding new ones in highcharts
- Highcharts - best way to handle and display zero (or negative) values in a line chart series with logarithmic Y axis
- Show specific series values in the stack label using highcharts
- Highcharts: How to provide a custom stack label in highcharts bar graph from within the stackLabel formatter?
- Highcharts area spline values have incorrect position on y-axis
- HighCharts chart export (screenshot download) does not display Navigator graph
- HighCharts: display the y-axis labels in percentage instead of the absolute count for basic column charts
- How to change area graph color above certain value in Highcharts
- HighCharts area graph - show tooltip only on hover of marker
- HighCharts - compare series with values instead of percentage
- AJAX displaying values from two different functions in a single Highcharts chart instead of two different ones
- Highcharts - Area between two y values highlighted
- Highcharts - Area Chart - Stacking with series containing negative and positive values
- Highcharts Custom display of tooltips, based on data series values
- Highcharts - null values are plotted on stacked area chart, in latest version
- Angular Highcharts Custom Legend Label In Area Chart
- highcharts gantt display as bar instead of lines
- How To Call A Function To Make A Graph Using HighCharts in PHP
- How can I make a graph with highcharts from csv file?
- how to display 2 same highcharts without duplicate the code
- Highcharts load effect on button click
- Display the value of plotband border in the highcharts
- Can we manage multiple highchart charts in a single function by changing type in chart drawing functionm
- Passivate Highcharts Export Phantom JS Web Server?
- Strange behaviour of Highcharts boxplot
- Highchart dual layer donut slide both the inner and outer donuts together
- How to retrieve/display title, units, copyright along with JSON data in Highcharts
- Receiving incorrect datetimes when using milliseconds for x-axis?
- Discrete bar with highcharts?
- Highcharts -- yAxis on donut chart not being displayed
- Child component not loading correctly in ngFor (but updates after resizing windows)
- Highcharts Activity Gauge - how to get different behaviors while hover over
- Reading MySQL data into highstocks
- Highcharts Stacked bar chart with db value (Dynamic Data)
- Angular 2 highcharts final setup
- Highcharts - how to wrap y-axis title in styled mode
- Highcharts - How show only two series on click
- How to center an image in a gauge
- Change dataLabels font size when zooming in Highcharts bubble graph
- how to show PHP array in jQuery alert?