score:23
Assuming that chart
is your chart var.
chart.yAxis[0].max;
Update
@Anagio told that it's possible to get it the following way.
chart.yAxis[0].getExtremes
This way you can get the data values and the tick values.
The data values are the values from your series, while the tick values are the values from chart lines.
score:12
This information is directly accessible from a Axis
object. For example:
var chart = $('#container').highcharts();
var axisMax = chart.yAxis[0].max; // Max of the axis
var dataMax = chart.yAxis[0].dataMax; // Max of the data
As mentioned you can use Axis.getExtremes
(API) , but the same data is also available as:
Axis.min
: Min of the axisAxis.max
: Max of the axisAxis.dataMin
: Min of the dataAxis.dataMax
: Max of the data
And even some historic data if the extremes of the axis has changed:
Axis.oldMin
: The previous min of the axisAxis.oldMax
: The previous max of the axis
Source: stackoverflow.com
Related Query
- How can I get the max value of a y axis at highcharts?
- How to get the axis value with respect to the cross hair in highcharts
- How replicate the value of Y Axis on both sides of the axis in Highcharts
- How do I get the value of a highcharts graph point on mouseover?
- *Highcharts* How to get the min and max value of the zoom box
- how to get the axis value when I click on a cursor in highstock(high charts)?
- Highcharts - How can I get the nearest point on click event
- My Highcharts graph with multiple axis ignores the max value I set for the first yaxis
- How can I get the top value of the yAxis labels in highcharts?
- How can I get HighCharts column chart to scale the yAxis to not have so much whitespace?
- How can I update the data in highcharts for both x axis & y axis?
- Highcharts - How to get Max and Min value between 2 dates
- How can I get highcharts barChart bars to always fill the container?
- How can I set the units on multiple axis on Highcharts
- How can I align the scale on my HighCharts graph with the axis rather than the margins?
- Highcharts - How can I get the name to display in the pie wedges?
- HighCharts - Angular, how to get y axis labels on the vertical lines drawn from x axis
- Highcharts: when having multiple columns for the same X axis value, how can I get 1 tooltip per column?
- How to get the X axis value from HighChart on android on click event
- How to set a function to the max value in boxplot highcharts
- how can I use rangeselector and navigation in highcharts in the given code
- Highcharts : How to increase marker radius based on the value range in Y axis in Scatter Graph?
- How do you get the mouse hovered label value with the highcharts custom event plugin?
- Highcharts - How can I put a 100% fix value in the X axis?
- How to get highcharts dates in the x axis?
- How can I get access to a Highcharts chart through a DOM-Container?
- HighCharts - How can I turn off the points?
- How can I change the colors of my highcharts piechart?
- How to display the value instead of percentage in a pie chart using jquery Highcharts
- how to set the interval of points on Y - Axis highcharts
More Query from same tag
- how to dynamically change chart type in highstock stock chart?
- Set Opacity Pie Chart Highcharts
- charts highcharts add spacethe right side
- Trying to render JS in RAILS causes issues
- Highchart limiting number of series by default
- HighCharts - Set default Axis options for my extension
- How can I put text within horizontal bar chart data points using Highcharts as well as adding text underneath each data point? Example below:
- Highcharts: how to maintain the same order of category labels when bar chart changes to column chart
- Highcharts legend labels go outside canvas
- How to add units to Highcharts/Highmaps's last legend/coloraxis?
- It's not possible load Highstock from the CDN as an AMD module
- Highcharts : smooth / anti-aliasing line
- onclick popout highchart piechart
- Align second scatter series to the side similar to how column and bar charts do using HighCharts
- Multilevel drilldown in piechart
- Line chart legend color not getting update on button click (highcharts-angular)
- Highcharts disabling marker not working
- Tooltip doesn't display on highchart graph
- How to make stacked column graph to show total data value on top
- Highchart loading in angular
- Charts,Server Side or Client Side?
- highcharts multiple marker hover color doesn't inherit from marker color
- HighChart boxplot with mean line
- How to hide other series when clicking on legend on highcarts?
- SQL query for a graphic chart. Not sure about how to use JOIN in this case
- R Highcharter margins go weird depending on y-max
- How to change circle to rectangle when mouse hovers on the heat map charts
- Highcharts.stockChart x-axis data for irregular time-stamped scatter breaks date range-handling
- Display Date and time on highcharts
- Can I have multiple plotlines with Highcharts?