I’m trying to switch RolloverMarker template at runtime from code behind, with no luck.
I have ControlTemplate definitions in XAML.
I create FastLineRenderableSeries objects and assign RolloverTemplates to them dymanically in code behind.
I add the series into sciChartSurface.RenderableSeries.
All this works.
When user clicks a series, a selectionChanged eventHandler method tries to switch the RolloverMarkerTemplate of the selected series
ControlTemplate ylbl = (ControlTemplate)Application.Current.Resources["RolloverLabelTopTemplate"];
flrseries.RolloverMarkerTemplate = ylbl;
The template object is created from Resources and assigned to the series, but the visible presentation is not changed.
Is there a better ( = working) way to do this or is it even possible ?
- Kari Kivento asked 6 years ago
- last active 6 years ago
I am doing all of my integration with SciChart using c# code.
Is there a way to simply customize the text of the Rollover modifier?
By default it shows
“`
x: somevalue
y: somevalue
z: somevalue
“`
when a data point is selected. I would like to simply change it to
“`
Time: somevalue
Profit: somevalue
“`
Is there a way to do this in pure c# without having to define xml templates etc?
- chris grant asked 4 years ago
- last active 4 years ago