score:0
If hiding x data, then look at this https://jsfiddle.net/anrilafosel/3g4z5kc3/
chart.xAxis[0].setCategories(newCategories);
for (i = 0; i < chart.series.length; i++) {
var newData = [];
for (j = 0; j < toggler_hc13.length; j++)
if (toggler_hc13[j] === 1)
newData.push(series_hc13[i].data[j]);
chart.series[i].setData(newData);
}
score:6
The above popular answer hides the labels only, this left tick marks for me which I also wished to remove.
In that case this works well
xAxis: {
visible: false
},
This is a simple solution to remove everything on the x/y axis for anyone interested. For more information please look here https://api.highcharts.com/highcharts/xAxis.visible
score:22
To hide labels on X-axis set the option labels: {enabled:false}
like this:
.....
........
,
xAxis: {
categories: [''],
title: {
text: null
},
labels: {
enabled:false,//default is true
y : 20, rotation: -45, align: 'right' }
}
.....
....
To hide labels on y-axis set the option labels: {enabled:false}
like this:
.....
.......
,
yAxis: {
min: 0,
gridLineWidth: 0,
title: {
text: '',
align: 'high'
},
labels:{
enabled:false//default is true
}
},
.........
......
Refer the documentation for futher understanding.
score:91
In HighCharts, bar graphs use inverted axes, so the bottom axis is really the Y axis. (See also "column" graphs where the graphic is rotated 90 degrees, in which case the bottom axis is the X axis.)
You need to add the following to the yAxis config
yAxis: {
labels: {
enabled: false
}
}
See the following for full example: http://jsfiddle.net/k5yBj/433/
Source: stackoverflow.com
Related Query
- how to hide highchart x - axis data values
- How to display highchart y axis with constistant data
- How to add % symbol to Y axis values in HighChart graph?
- How to feed series data that has x axis and y axis values in line 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 ?
- In highchart how to show y axis values in reverse order
- How to shift data using Series.addPoint without shifting x axis values in highcharts
- How to render Gantt Highchart from data source
- How to rotate javascript highchart line graph -90 degree without affecting the data values
- How to feed two values to y axis at a time corresponds to single x axis value in Highchart
- how to pass multi sereis data with dual y axis chart in highchart
- How do I hide the code for the chart data in highcharts?
- How to hide zero values in Column chart
- Javascript Highcharts v3.0.5 - How to hide Y Axis Title when using multiple Y Axis
- How to show all values at datetime axis in highcharts?
- How to break highchart bars for extreme values
- How to dynamically change axis from linear to logarithmic in HighChart
- How can i change highcharts data values by selecting from a dropdown list
- How to show only specific x-axis values on datetime axis in Highcharts
- How to hide one series data info in tooltip using highcharts
- How to place labels on opposite Y axis in Highchart without a second series
- How to hide color axis in heatmaps using highcharts
- How to populate a Highcharts axis with string formatted data from a PHP array
- how to pass values to tooltip which not in x and y axis in highcharts
- How to hide highChart plotLine label until mouseover?
- How to fill data dynamically in Highchart
- How can I force ticks/grid lines on a Highcharts datetime X axis to arbitrarily line up with data points?
- hide YAxis values in HighChart Solid Gauge
- How to hide intermediate values of solid gauge chart of highcharts?
- highchart Axis values color
More Query from same tag
- Modify legend symbol of highchart on export not working
- Highcharts - Incorrect tooltip position when zoomed in
- change startOnTick after a (High)chart has been created
- How to display 2 solid gauge using ng-repeat function?
- Set file type dynamically when click on exporting menu in highcharts using chart.exportChart function
- Highmaps redraw bug after update points (with enabled zoom)
- stockChart is not defined(…)
- Use return data from dynamic highcharts chart in Shiny
- Highmaps Select Multiple Points With Clustering Enabled Loses What Is Selected Already
- How to change height of ENTIRE xAxis labels using Highcharts?
- highcharts stacked column weird symbol in a bubble
- How do i enable scrollbar in highcharts in react
- create a ranking and statistics with repeated database records
- Add vertical(projection) line from point to categories, highcharts
- How to provide styles on X axis gantt high chart
- debugging domjs and highcharts
- Highcharts random realtime with detecting too high value
- Highcharts: How to make startRow and endRow work again when data is stored in Google Spreadsheet?
- Using local file instead of $.getJSON
- Unable to render 'bullet' chart via node-export-server from highcharts
- Highcharts - DataLabels connector customization {Straight line}
- Spiderweb chart with circular gridline interpolation: Label is seen very far away from Plotline
- highchart axis position with negative values
- Unable to get width of <rect element of <svg
- Which chart type should display following chart? gauge or column?
- Force min/max in Highcharts and avoid 0 for min
- Highchart - xAxis weekly date can start any day?
- Javascript HighCharts reading from a different format
- JasperReports: HTML5 high chart X Axis label font size
- How to show the value of all linked axes in tool tip in highcharts?