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 Query
- How to make label in highcharts area graph display absolute values instead of negative values?
- 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 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
- How to update new plotline values instead of removing and adding new ones in highcharts
- highcharts zero values results in graph half way instead at the bottom
- Highcharts: How to provide a custom stack label in highcharts bar graph from within the stackLabel formatter?
- How to change area graph color above certain value in Highcharts
- Make stack label disabled for a column in stacked column graph in Highcharts
- 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
- How to make legend color show up in Highcharts for a line graph under certain conditions?
- How to Display Month and Year in xAxis of Highcharts datetime graph
- How to show xAxis label in tooltip in a Highcharts area chart?
- How to display yearly values on xAxis in Highcharts
- Highcharts display label for pie chart using html table as data source
- Highcharts - XAxis Label with LineFeed - how to make smaller gap?
- Highcharts - Stack Graph Display Average of all values
- how to prevent highcharts tooltip popup from hiding, on graph area or browser window resize?
- How do I display category names instead of point.y in Highcharts scatterplot?
- How to make Highcharts color axis as thresholds instead of gradual?
- How can I make Highcharts label a datetime X-axis with relative dates?
- Display negative Y values above zero instead below in highcharts
- How to make highcharts display date in hh:mm:ss format, not as timestamp?
- Spring MVC: How to display Hashmap keys and values in highcharts
- How do I have text display within the inside of a stacked bar graph in highcharts
- Highcharts - How to show intermediate values on Area chart
- How to modify the code so that Highcharts graph does not cover fixed navigation bar at the top of the page?
- how to get categories values and spacing in label in highcharts
More Query from same tag
- How to avoid bad behavior zooming to areas outside the data range
- How to pass multiple Highcharts parameters in JSON array
- How to show the path that I have traversed in highcharts drilldown chart?
- Labels inside pie chart (highcharts) without the distance trick
- How to display percentage along with Count value in Pie chart Using Higcharts Plugin?
- Force last label and tick on x-axis
- Highcharts Error #16 But I'm not using Highstocks
- Highcharts Y axis needs to be on the X axis
- How to draw a vertical line on HighCharts?
- How to create Waterfall model chart using QuickChart?
- Bubble chart :Cannot read property 'parts/Globals.js' of undefined
- How to add comma to data labels value in bar chart race of highcarts?
- How do i set the X-Axis as Date Array in highcharts.js simple highcharts.chart plot or .stockChart?
- Show tooltips on all points of vertical line
- Is there a way to pass in variable element ID from Highcharts to launch a modal window?
- Using custom fonts with Highcharts
- Getting numbers on Y-axis to show up as percentages with code from a Highcharts code generator tool?
- clearing interval inside highcharts (React)
- Highstocks: Disable the Vertical line while hovering on legend or chart
- Highchart update chart issue
- HighChart highlight point
- Extend Highcharts Export
- How to combine highcharts data?
- Can we stack a 2 columns in a single column in basic column Highchart and let the other columns let it be?
- center rendered label in High Charts
- How do I get elements in zoom area
- Changing baseSeries dynamicilly
- Control spacing between bars in Highcharts grouped bar chart
- 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 ?
- How do I skip a datapoint in Highcharts without causing an interruption in the line of the chart?