views:

39

answers:

0

how to get width of column in charting ColumnSeries. I have not DataPointStyle. It takes the default

I have set the itemssource to

col.ItemsSource = new KeyValuePair[]{ new KeyValuePair(DateTime.Now.AddMonths(1), 100), new KeyValuePair(DateTime.Now.AddMonths(2), 200), new KeyValuePair(DateTime.Now.AddMonths(3), 300), new KeyValuePair(DateTime.Now.AddMonths(4), 400) };

I get 4 columns with some even width. How to I print its value .... its taking it by default ...

thank you.