SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
How to do that? Let’s use the SciTrader as the example. We have CandlestickRenderableSeries, Ma500, Ma200 series on the chart. In rollover mode, I only want the CandlestickRenderableSeries show its tooltip. Please help.
Many thanks!
regards
Chunxi
Solved it by implementing a multiple binding with series index and name. In in the converting class, we do the customization.
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Margin="3,2,2,2" Style="{StaticResource ChartDataItemsStyle}">
<TextBlock.Text>
<MultiBinding Converter="{StaticResource SeriesInfoConvertor}" ConverterParameter="Nothing">
<Binding Path="DataSeriesIndex"/>
<Binding Path="SeriesName"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Grid>
</DataTemplate>
Please login first to submit.