score:5
Accepted answer
use the select method of the point object https://api.highcharts.com/highcharts/series.line.point.events.select
score:9
Using a marker we can do this:
$(function () {
$('#container').highcharts({
chart: {
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
series: [{
data: [29.9, { marker: {
fillColor: '#FF0000',
lineWidth: 3,
lineColor: "#FF0000" // inherit from series
},y:71.5}, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
});
Source: stackoverflow.com
Related Query
- Highcharts highlight single point on line
- Highcharts Line Chart - Highlight xAxis labels on point hover
- How to set a different border line of every single point or serie in Highcharts scatter plot?
- Highcharts => Getting the id of a point when clicking on a line chart
- highcharts customize tooltip for a single point
- Highcharts - How to remove connecting line between fixed tooltip and point
- How do I set highcharts line graph point colors to an array of colors?
- Highcharts - synchronized-charts crosshair line and circle point display
- Highlight point in Highcharts scatter graph?
- How to highlight specific Point with Highcharts Js
- Highcharts add point to line chart with json
- Highcharts Grid Line Width (or Color) - Single Line
- Highcharts multiple data on single point in series
- highcharts no point markers but show single point or discontinous points
- How can I highlight every data point in Highcharts fixed width container?
- Highlight a line with different color in Parallel coordinate chart with Highcharts
- highcharts line for one point serie
- Highcharts line chart: point should be clickable, the line between the points not. Is that possible?
- Highcharts Single Line series JSON date data format
- When adding point on dynamically created Multiple Highchart Graphs on a single page, the plot line draws to the start point instead of last point?
- Basic highcharts plugin, need to remove line between point
- Highlight point range in Highcharts
- Highcharts ( stockchart series line is not connecting to the last point
- highcharts not displaying line when last point is before current x Axis minimum and next point is after current X Axis maximum
- Highcharts Line Chart - Hyperlink on a data point
- Highcharts timelines with a single data point
- Highcharts add single line to column chart
- move one vertical line with mouse over and find intersection point with two highcharts
- Highcharts : Single point in x-axis of datetime type shows 00:00:00:0000
- How to show horizontal line instead of a dot for a single value data in highcharts
More Query from same tag
- How do I access halo on column click event?
- high charts xAxis label cannot be display after reset zoom
- white border/line color set on hover for the bubbles in the bubble chart not being reset on mouse out from bubble
- Highcharts: Rendering Incorrectly Prices between Percent/Value
- how can i add popup to flags in highchart?
- Mean Markers in Boxplot with multiple series
- Highchart is not showing inside bootstrap div
- How to make sure that highcharts spline graphs stays between 0 and 1?
- Highcharts over SSL on GAE
- Export Highcharts data in excel with values as a string
- Binding json result in highcharts for asp.net mvc 4
- PhantomJS PDF DPI scaling issues
- How to disable animations on Highcharts Dotnet C# MVC?
- HighCharts render chart already zoomed
- add to tooltip additional values from array
- highcharts - removing decimal places on Y axis with only one point
- How to make multiple charts using highcharts in a loop?
- Highcharts using MySqli and Json
- Angular highcharts is returning error trying to draw a histogram
- Highcharts redraw and sort data on draggable line graph
- Show Date alongside OHLC values in candlestick chart
- Highcharts column with drilldown results in blurred data label in main chart, except for the drilled down columns
- highchart dataLabel diffent position
- Adding dynamic irregular data to area chart causes it to shift
- Highcharts Angular Chart not redrwan from renderer.button event
- Predictive time modeling for chart
- HighCharts HIOptions.colors must be [string]?
- Implement slider in highcharts
- How to get series marker symbol when displaying shared tooltips?
- Select Point Programmatically (e.g. from TableView Cell or Button)