Good Evening,
I currently have a chart, and it's rending as expected, but the problem comes in when trying get the tools tips working.
Here is what the data will look like...
{
name: system 1,
data: [100,200,300],
hitDates: [01-01-2016, 01-02-2016, 01-03-2016]
},
{
name: system 2,
data: [400,500,400],
hitDates: [01-01-2016, 01-02-2016, 01-03-2016]
}
So as you can see, 'Name' is a string and data and hitDates are arrays but will be equal in length.
I've tried everything to get get the tooltip to bind to simply show per point (name, data(hits), and hitDates)
series.name works fine, but since data and hitDates are arrays, it simply prints out the complete array. I've even tried series.data[series.index] and index seems to always be 0. I've tried dataItem.data and that just comes back as undefined.
Any help would be GREATLY appreciated.
Thanks In Advance