Hi,
I'm specifying the bar width and colors to series programatically.
For StackedBar chart, i don't see the impact. The Bar width is still auto eventhough i set it to 15%. The bar becomes multiple color when i specify the color.
When i apply the same to a Bar chart, the width is set to 15% and the color is applied. Why does it not apply to StackedBar? Whether the properties which needs to set is different for StackedBar?
In StackedBar, how can i show the total of item values above the bar? similarly on DataTable how to show the total?
Thanks.
I'm specifying the bar width and colors to series programatically.
chartseries.Type = Telerik.Reporting.Charting.ChartSeriesType.StackedBar; |
chartseries.Appearance.BarWidthPercent = 15; |
chartseries.Items[j].Label.Visible = false; |
chartseries.Appearance.FillStyle.MainColor = System.Drawing.Color.FromArgb(57, 19, 232); |
For StackedBar chart, i don't see the impact. The Bar width is still auto eventhough i set it to 15%. The bar becomes multiple color when i specify the color.
When i apply the same to a Bar chart, the width is set to 15% and the color is applied. Why does it not apply to StackedBar? Whether the properties which needs to set is different for StackedBar?
In StackedBar, how can i show the total of item values above the bar? similarly on DataTable how to show the total?
Thanks.