怎样在SilverLight的Chart的数据点上显示详细信息
1个回答
展开全部
默认方式下产生的Chart在鼠标在数据点上悬停时,只显示数值,如果要显示更详细信息,必须改变DataPoint的Style,下面的代码是以AreaChart为例,设置的内容。
<!-- Page AreaDataPoint Style1 -->
<Style x:Key="AreaToolTipStyle1" TargetType="chartingToolkit:AreaDataPoint">
<Setter Property="Background" Value="Green" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="IsTabStop" Value="False" />
<Setter Property="Width" Value="4" />
<Setter Property="Height" Value="4" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:AreaDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<TextBlock Text="数量"></TextBlock>
<ContentControl Content="{TemplateBinding FormattedDependentValue}" />
<TextBlock Text="日期"></TextBlock>
<ContentControl Content="{TemplateBinding IndependentValue}" />
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
并在动态生成图表时,加入如下语句:
areaSeries1.DataPointStyle = Application.Current.Resources["AreaToolTipStyle1"] as Style; //定义在Style文件
areaSeries1.DataPointStyle = this.Resources["AreaToolTipStyle1"] as Style; //定义在页面
<!-- Page AreaDataPoint Style1 -->
<Style x:Key="AreaToolTipStyle1" TargetType="chartingToolkit:AreaDataPoint">
<Setter Property="Background" Value="Green" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="IsTabStop" Value="False" />
<Setter Property="Width" Value="4" />
<Setter Property="Height" Value="4" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:AreaDataPoint">
<Grid x:Name="Root" Opacity="1">
<ToolTipService.ToolTip>
<StackPanel Margin="2,2,2,2">
<TextBlock Text="数量"></TextBlock>
<ContentControl Content="{TemplateBinding FormattedDependentValue}" />
<TextBlock Text="日期"></TextBlock>
<ContentControl Content="{TemplateBinding IndependentValue}" />
</StackPanel>
</ToolTipService.ToolTip>
<Ellipse StrokeThickness="{TemplateBinding BorderThickness}" Stroke="{TemplateBinding BorderBrush}" Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
并在动态生成图表时,加入如下语句:
areaSeries1.DataPointStyle = Application.Current.Resources["AreaToolTipStyle1"] as Style; //定义在Style文件
areaSeries1.DataPointStyle = this.Resources["AreaToolTipStyle1"] as Style; //定义在页面
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询