SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
In your example “CustomTooltipsWithModifiers” you show how to apply custom styles and templates to XML generated RenderableSeries, like: (works fine)
<s:SciChartSurface.RenderableSeries>
<s:FastLineRenderableSeries
Stroke="#ff6495ed"
StrokeThickness="2"
s:VerticalSliceModifier.TooltipContainerStyle="{StaticResource TooltipStyle1}"
s:VerticalSliceModifier.TooltipTemplate="{StaticResource VerticalSliceTooltipTemplate1}"/>
In your example “ChangeSeriesTypeInCode” you generate the RenderableSeries in code programmatically, like: (works fine)
var series = new StackedMountainRenderableSeries()
{
Name = "any Name",
IsVisible = "any visibility",
StrokeThickness = "any int",
Stroke = "any Color",
Fill = "any Brush",
DataSeries = "any dataSeries"
};
Chart.RenderableSeries.Add(series);
My Question: How do I apply the Templates and Styles for Modifiers to the programmatically generated RenderableSeries?
Thanks for help.
Hello!
Is there any method to paint FastBandRenderableSeries using some image like template? (see the picture below)
Thanks in advance
Is there any example of how to modify the intersection point template of where a verticallineannotation intersects say a fastlinerenderableseries?
The default is simply the value with a gray background.
In the “Series Vertical Slices” example I can see it includes the series name, but I don’t see anything in the “Source Code” that even asks for it.
Thanks for any help!