Pre loader

There are multiple FastLineRenderableSeries on the SciChartSurface, in Rollover mode, I only want one series to show its tooltip.

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

1
0

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

  • You must to post comments
1
0

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>
  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.

Try SciChart Today

Start a trial and discover why we are the choice
of demanding developers worldwide

Start TrialCase Studies