如何给chart控件中单独的点设置颜色
2017-01-17
展开全部
使用C1Chart控件,可以使用DataSeries.PlotElementLoaded事件去重写图表元素的默认样式和行为。我们在PlotElementLoaded事件里分配自定义的颜色刷到PlotElement.Fill属性。
ds.PlotElementLoaded = (sender, args) =>
{
var pe = (PlotElement)sender;
var dp = pe.DataPoint;
if (!(pe is Lines)) // skip connecting lines
{
// fill the symbol with a color calculated from the data value
pe.Fill = GetBrush(Colors.Blue, Colors.White, Colors.Red, dp.Value);
}
}
详细的介绍,请参考下面的博客
http://blog.gcpowertools.com.cn/post/C1ChartWPF_DataPointCustom1.aspx
ds.PlotElementLoaded = (sender, args) =>
{
var pe = (PlotElement)sender;
var dp = pe.DataPoint;
if (!(pe is Lines)) // skip connecting lines
{
// fill the symbol with a color calculated from the data value
pe.Fill = GetBrush(Colors.Blue, Colors.White, Colors.Red, dp.Value);
}
}
详细的介绍,请参考下面的博客
http://blog.gcpowertools.com.cn/post/C1ChartWPF_DataPointCustom1.aspx
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询