I am using a series tooltip to render a custom tooltip. I am unable to find how to style the tooltip.
For example.
Series 1 with series tooltip -> background-color: '#F00'
Series 2 with series tooltip -> background-color: '#0F0'
Series 3 with series tooltip -> background-color: '#00F'
this.options = {
series: [
{
name: 'Test',
data: seriesData,
color: '#4DCCFF',
tooltip: {
backgroundColor: '#F00',
headerFormat: '',
pointFormat: '{point.y}',
}
}, ...
]
}
I dont expect the background color to work in the above example but it demonstrates what I'm trying to do.
Is this possible to do with angular2-highcharts? If so how would I approach this? I tried a custom formatter but it reverted back to default tooltip behavior.