I am trying to display an irregular time series in highcharts that also has different markers for each point. I can find no example of how this combination of data should be formatted.
Irregular time series point: [Date.UTC(1970, 10, 10), 40],
Different Markers each point: {y: 40, marker: {symbol: 'url(http://myurl.com/image.png)' }},
I have tried to combine these in several ways, but have not come up with the proper way. This is the best I have come up with. It still does not display, but does not completely kill the chart either. Is there a way to combine these? [Date.UTC(1970, 10, 10), {y: 40, marker: {symbol: 'url(http://myurl.com/image.png)' }}],