1

我正在使用基于 WPF 工具包的多个时间序列图表。例如,一张图表中的温度、露点和压力的时间序列

我需要共享工具提示,以便在每个数据点在一个小工具提示框架中显示某个日期/时间的气象参数摘要。

如果有人知道这是否可能以及如何做到这一点,那就太好了。

谢谢,PY

4

1 回答 1

0

查找您StylesDataPoints系列,我有一个示例BubbleDataSeries

<Style x:Key="BubbleToolTipTemplate" TargetType="{x:Type c:BubbleDataPoint}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="c:BubbleDataPoint">
                <Grid>
                    <Ellipse Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" />
                    <ContentPresenter Content="{TemplateBinding Size}" HorizontalAlignment="Center" VerticalAlignment="Center" />
                    <ToolTipService.ToolTip>
                        <StackPanel>
                            <ContentControl Content ="{TemplateBinding DependentValue, Converter={StaticResource DoubleToStringConverter}}" />
                            <ContentControl Content ="{TemplateBinding IndependentValue}"/>
                            <ContentControl Content ="{TemplateBinding Size}" />
                        </StackPanel>
                    </ToolTipService.ToolTip>
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>  
于 2013-06-03T06:53:12.547 回答