This question is locked. New answers and comments are not allowed.
Hi,
I've got a Chart that has a set of series definitions bound to it (MVVM) and the series definition is created like this:
var seriesDefinition = new LineSeriesDefinition();
seriesDefinition.ShowItemLabels = false;
seriesDefinition.ShowItemToolTips = true;
seriesDefinition.ItemToolTipFormat = "#Y{#,#}";
My question is, is there a way to change the behavior/style of the tooltip?
I want to do the following:
* Show it faster, I want the tooltip to show up instantly when I hover a point in the line
* Add some inne-margins (padding)
* Change background / foreground / border color
Thanks!
I've got a Chart that has a set of series definitions bound to it (MVVM) and the series definition is created like this:
var seriesDefinition = new LineSeriesDefinition();
seriesDefinition.ShowItemLabels = false;
seriesDefinition.ShowItemToolTips = true;
seriesDefinition.ItemToolTipFormat = "#Y{#,#}";
My question is, is there a way to change the behavior/style of the tooltip?
I want to do the following:
* Show it faster, I want the tooltip to show up instantly when I hover a point in the line
* Add some inne-margins (padding)
* Change background / foreground / border color
Thanks!