score:137
Here's an example with a line chart: http://jsfiddle.net/aeZ6P/1/
Important part:
plotOptions: {
line: {
marker: {
enabled: false
}
}
}
See also: https://api.highcharts.com/highcharts/plotOptions.line.marker.enabled
Same effect with spline: http://jsfiddle.net/aeZ6P/
score:12
Take a look at this from the HighCharts API reference:
http://api.highcharts.com/highcharts#plotOptions.series.marker.enabled
The options you need to add are this:
plotOptions: {
series: {
marker: {
enabled: false
}
}
},
This method is nice as it will work with all charts with the point markers. If you want a specific chart type, check this out:
plotOptions: {
line: { // <--- Chart type here, check the API reference first!
marker: {
enabled: false
}
}
},
Enjoy!
score:92
In Highcharts we have three ways to disable markers:
1) Disable for all series by type:
plotOptions: {
line: { /* or spline, area, series, areaspline etc.*/
marker: {
enabled: false
}
}
}
2) Disable for one specific series:
series: [{
data: [14,17,21],
marker: {
enabled: false
}
}]
3) Disable marker for a certain point:
series: [{
data: [{
y: 14,
marker: {
enabled: false
}
},{
y: 17
},{
y: 21
}]
}]
Source: stackoverflow.com
Related Query
- HighCharts - How can I turn off the points?
- How can I delete all of the points from a highcharts series
- how can I use rangeselector and navigation in highcharts in the given code
- How can I change the colors of my highcharts piechart?
- how to set the interval of points on Y - Axis highcharts
- How can i hide all the Series in highcharts at a time
- How can I remove the white border from HighCharts pie chart?
- highcharts link series such that turn one off turns off the other
- How to set the z-index of points on a HighCharts scatter plot?
- How to add new points to highcharts after plotting the first 'n' points?
- How can i keep the color the same in highcharts
- Highcharts : How can i move the tooltip to external DIV?
- How Can I Hide a Pie Chart's Slice in HighCharts Without Removing It From the Legend?
- How to cut off the line in highcharts between two pointI
- how to display 2 same highcharts without duplicate the code
- How can I access the 'this' field in plotOptions of highcharts
- how can i add in highcharts a different dashStyle just for a part of the graph
- How can I display the outcome of the for loop in highcharts
- How can I limit the length of a HighCharts PlotLine on the Y-Axis for a BoxPlot?
- How can you speed up the Highcharts network graph initial animation?
- Highcharts how to create legends based on the value of points
- How can I make milestone lines with a GANTT chart using the highcharts library?
- How can I add a text link just below the legend box in highcharts
- Highcharts - How can I get the nearest point on click event
- How can I display crosshair labels on top of the chart with Highcharts
- How can I style my highcharts solid gauge to have a background behind the percentage?
- How can I inspect the Highcharts tooltip in the Chrome inspector?
- How can I extend the x-axis on a Highcharts graph?
- Highcharts - How do I keep both line points in from splitting between the two bar charts
- Highcharts is rounding off the decimal values to 0. How to avoid it?
More Query from same tag
- Angular5: Hide/Show yAxis in Highcharts based on the data
- Highcharts - Is there a way to disble styled mode for certain elements?
- Can I specify the x axis lablel in highchart?
- Highcharts Density Dot Map Support?
- highcharts get all of the minimum points of the chart
- Line shadow like this, possible? (Highcharts.js)
- Use Material UI theme attributes for styling highcharts - React
- Custom tooltips in Highcharts diagrams
- HIGHCHARTS auto-rotate x-axis labels for custom positioned labels
- Fullscreen bootstrap 4 card with highcharts
- Highcharts and jQuery animate: Snaps back to original size; only works when window is resized
- How to Change the color of each group in boxplot (highcharts)
- How to generate PDF Files based on a HTML+CSS+jQuery page containt
- Remove padding above bar columns
- Commas in tooltip of Highchart
- child Progress indicator is not working after collapsed and expanding parent element
- % not showing in tooltip pie chart highcharts angular js
- ServiceNow Dynamic content Block Issues
- How to set the padding and placement if we have more than 16 data in the series
- Conditionally show/hide Tooltip of Highcharter
- Highstock Angular value in legend
- how to apply tooltip formatter in charts module drupal
- Tooltips don't clear on IE8
- Highcharts Data Parsing List of lists
- Load HighCharts Chart/Data on Form Submit with jQuery
- High Charts - Show series data of Multiple Charts
- Highcharts with reveal.js: Refresh chart with slide?
- Coloring a label depending on color of slice and using distance
- Yii2 How to pass php array data into highcharts
- HighChart to show multiple chart after drill down?