Silverlight Charting LineSeries - 为数据点添加标题
<toolkit:Chart Title="Sales" Name="ChartSales">
<toolkit:Chart.Series>
<toolkit:LineSeries
Title="Serie1" Name="LineSerie1"
IndependentValueBinding="{Binding Key}"
DependentValueBinding="{Binding Value}" />
<toolkit:LineSeries
Title="Serie3" Name="LineSerie3"
IndependentValueBinding="{Binding Key}"
DependentValueBinding="{Binding Value}" />
我创建了一个包含 10 个线系列的图表,所有这些都运行良好。然而,此图表上的数据太多,我需要在指向数据点时显示的标题比 1243 更明确。我需要查看 LineSerie 的日期和标题
我该如何继续?
<toolkit:Chart Title="Sales" Name="ChartSales">
<toolkit:Chart.Series>
<toolkit:LineSeries
Title="Serie1" Name="LineSerie1"
IndependentValueBinding="{Binding Key}"
DependentValueBinding="{Binding Value}" />
<toolkit:LineSeries
Title="Serie3" Name="LineSerie3"
IndependentValueBinding="{Binding Key}"
DependentValueBinding="{Binding Value}" />
I have created a chart with 10 lineseries, all working nicely. However there are so much data on this chart that I need the caption that show up when pointing over the datapoint to be more explicit than 1243. I need to see the date and the title of the LineSerie
How do I proceed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想出了结合这两个链接的方法:
Datapoint silverlight 图表工具包的工具提示
Silverlight 图表:创建丰富的数据点工具提示
I figured it out combining these 2 links:
Datapoint tooltip for silverlight chart toolkit
Silverlight Charting: Creating rich data point tooltips