score:3
Accepted answer
Highstock has point markers disabled by default. You will need to enable them explicitly as follows:
plotOptions: {
series: {
marker: {
enabled: true
}
}
},
See more at http://api.highcharts.com/highstock/plotOptions.series.marker
score:12
If you look to your demo you'll see that using color
it sets the tooltip color and not the marker
.
To fix it use marker fillColor
instead, like the following.
data: [
{x: 1343862840000, y: 4, marker:{ fillColor: 'red'} },
{x:1343863200000, y:5, marker:{ fillColor: 'green'}}
]
Update:
It works on highstock
see this demo.
You have to init it using the right object.
Use Chart
instead of StockChart
.
reference
Source: stackoverflow.com
Related Query
- Cannot set Individual Point color in Series for Highstock API, it works for Highchart API
- Highstock/Highchart cannot set Individual Point color
- Highchart / Highstock how to set color of individual ohlc or candle?
- HIghcharts individual plot point color
- Individual point color in highcharts scatterplot
- Highchart ticks start point change when categories names are set
- Set background color to HighChart xAxis labels
- How to set series-label to false by default and change the color of series label text in highchart
- Set background color for only one pane in multi-pane Highstock chart
- Set series color based on X axis on a column Highchart
- highchart - label color by based on point data
- set individual color for each bar in bar chart using highcharts
- Strange character in the Highstock source code
- Highcharts: Set a individual text color by series name
- Set Highchart cursor/pointer with a click on a gmap polyline point
- Highchart shiny R scatter plot - how to define individual point colors
- Set color of highchart column according to average or limit value
- highchart set fill color
- Set Color for Pie Chart using HighChart + JSON data
- Column based Highchart drilldown series assign color code to each column
- Set yAxis background color in Highstock
- How to set color for non plotting Area in HighChart
- How to set tooltip background as point color for split chart in Highcharts?
- Highchart columnrange, color code lines based on data
- Highchart - change color of one x-axis label only
- use highchart and highstock on the same page
- Trying to set a minimum height on bars in HighStock
- How to create a new Highstock chart with new Highchart and not jquery?
- Change color of bars depending on value in Highchart bar-chart with MVC3
- set a symbol marker with highchart
More Query from same tag
- Highcharts column graph custom legend formatting not showing legend symbols
- Highcharts : Under Y Axis we need to display a Image
- Highstock type 'candlestick' - Change bordercolors
- How to render the missing data series and fix the dates on the x-axis in Highcharts?
- Highcharts error 19 issue when adjusting container width that chart displays in
- Remove Zero From the HIGHCHART
- Heatmap show previous day in the tooltip
- Highcharts 3D cylinder wiht ReactJS
- Clicking on a button triggers the same event twice? Strange behaviour for Highcharts legend display
- highcharts-ng addpoint each second
- Highstock chart - Dates on same x axis and Crazy Tooltip
- How can I change granularity in highcharts?
- Reset default zooming and navigator in Highcharts (ng-highcharts).
- Is it possible to set fixed y-axis to spline chart update every second
- Network Graph hovering to hide link labels
- How can I configure the legend with a specific height in highstock?
- Highchart sankey- Show multiple entries having same name independently
- Exporting Chart Not Keeping Navigator Series
- Highcharts Multiple Series Dynamic Column Chart Update
- adding more data in highchart
- Highcharts same legend color as of the pie chart slice color
- Display time on Xaxis with line chart make by Highcharts
- How to get the array format to function on x axis labels?
- Highstock Change tick interval on range selector change
- date time plotting in highcharts
- Overlapping flags in Highstock
- Highstock flags onSeries
- How to change colors options in Highcharts programmatically?
- Add Categories to Highcharts via Loop
- How to add the years in xAxis date format while exporting? Also how to add the data source during the exporting?