score:114
Accepted answer
score:5
Taking help from above answer link mentioned in the above answer sets the max value with option
yAxis: { max: 100 },
On similar line min value can be set.So if you want to set min-max value then
yAxis: {
min: 0,
max: 100
},
If you are using HighRoller php library for integration if Highchart graphs then you just need to set the option
$series->yAxis->min=0;
$series->yAxis->max=100;
score:9
Alternatively one can use the setExtremes method also,
yAxis.setExtremes(0, 100);
Or if only one value is needed to be set, just leave other as null
yAxis.setExtremes(null, 100);
Source: stackoverflow.com
Related Query
- How to set Highcharts chart maximum yAxis value
- How to change space value between grid and yAxis in Highcharts line chart
- How to set Highcharts xAxis position on the yAxis zero value (negative/positive chart)?
- How to set yAxis min/max in Highcharts synchronized chart with JSON
- Highcharts : how to set yAxis max value inside angularjs controller
- How to display the value instead of percentage in a pie chart using jquery Highcharts
- Highcharts - set maximum range for yAxis but keep axis dynamic within that range
- How to set a static minimum value for axes in Highcharts
- Highcharts Bar Chart - How to set the minimum bar width/length
- Highcharts- how to set yAxis to the closest or exact value in the series data
- Highcharts - how to set custom content in point tooltip (popup) on 3D scatter chart or how to customize point tooltip information?
- How set options from HIGHCHARTS in a chart using vue chartkick
- how to get last value shown yAxis highcharts
- How to set new yAxis data in chart dynamically (highcharts + angular2(4))?
- How to set a Maximum yAxis range for HighChart graph?
- How do I set the margin to bottom of a chart in HighCharts to zero?
- How to dynamically set title in Pie Chart of Highcharts
- How to set non-linear step in yAxis on Highcharts
- HighCharts how to add live series data set to existing chart
- My Highcharts graph with multiple axis ignores the max value I set for the first yaxis
- Highcharts Theming: How to set gradient colors for certain chart types only?
- Highcharts how to make a set number of colors for pie chart data and drilldown data
- how do you set the yaxis values in highcharts
- How to set maximum and minimum value color of highcharts?
- Highcharts Angular - How to set chart width and height with percentages?
- Highcharts - Column Chart Drilldown, how to change the drilldown bar color based on some value
- How can I get HighCharts column chart to scale the yAxis to not have so much whitespace?
- How to set the target of highcharts bullet chart using SVG?
- how to get last value shown yAxis highcharts in current version in a simple way?
- How to set the fixed xAxis value in Highcharts
More Query from same tag
- Highcharts - Export PDF texts as text (and not vectorized shapes)
- JS value name and it's value
- Highcharter annotation on date x-axis not working - R
- hover on a point in highcharts graph using playwright and typescript
- Adding narrative to pie chart (highcharts)
- Highcharts Grid Line Height Below Spline
- Calling Reset Zoom manually
- Dynamically add an average line in highchart in angular
- Using a flask variable as data source for highcharts
- Highchart merge won't enable labels in xAxis
- Highstocks Changing x axis tick from Feb DD. MMM to MMM DD
- in highcharts, how can I align legend symbol and legend text?
- Highcharts line style change
- Highcharts stocks - Scale candlesticks serie only
- Print datatable and Chart using Typescript
- How to show xAxis label in tooltip in a Highcharts area chart?
- Loading string data from table gets parsed as Date on Chrome - Highcharts
- Dynamic PlotLine in Highcharts
- Highcharts enable pan without holding panKey
- Erro in ReactJS - Module not found: Can't resolve 'highcharts'
- Highchart custom styling
- How to use decimal dates with Highcharts (such as 1992.9614)?
- Solid Gauge Highcharts data Spreadsheets
- Highcharts | Line height control for plot band labels in styled mode
- HighCharts display total of stacked column in labels
- Y-axis on large negative and small positive values in High Charts
- How to implement similar line chart using the Highcharts library?
- Highcharts datalables enabled for one series and one point on the chart via chart function
- how to draw hour and minute value (hh:mm) pie chart using highcharts,javascript
- How to update config in HighChart with React hooks?