Posted 20 Mar 2011 Link to this post
Posted 24 Mar 2011 Link to this post
Posted 25 Mar 2011 Link to this post
radKlineChart.CreateItemStyleDelegate = BuildCustomItemStyle;
public
Style BuildCustomItemStyle(Control item, Style style, DataPoint point, DataSeries dataSeries)
{
if
((item
as
Bar) !=
null
&& point !=
)
Canvas canvas = item.FindChildByType<Canvas>();
Rectangle definingGeometry = canvas.Children[0]
Rectangle;
definingGeometry.Width = 1;
}
return
style;