使用xaml.cs文件添加图例和工具提示
本文关键字:工具提示 添加 xaml cs 文件 使用 | 更新日期: 2023-09-27 18:16:32
我在xaml.cs文件中绘制图表,如
chart = new RadCartesianChart();
chart.Name = "Chart";
chart.Margin = new Thickness(10,20,10,20);
chart.BorderThickness = new Thickness(1);
chart.Background = new SolidColorBrush(Colors.LightGray);
chart.BorderBrush = new SolidColorBrush(Colors.Black);
ObservableCollection<MultiSeries> multiseries = mainWindowViewModel.GetSeies(Row, Col);
multiseries.ToList().ForEach(series =>
{
chart.Series.Add(SeriesHelper.getLineSeries(series));
}
chart.SetValue(Grid.ColumnProperty, Col);
chart.SetValue(Grid.RowProperty, Row);
ChartGrid.Children.Add(chart);
和我试图添加工具提示和图例到这个图表但是我不知道如何添加工具提示和图例
使用如下语句:
chart.Behaviors.Add(new ChartTooltipBehavior());