This is a migrated thread and some comments may be shown as answers.

how to customize the style of 3D stacked bar 100 chart

1 Answer 39 Views
Chart
This is a migrated thread and some comments may be shown as answers.
Shashank
Top achievements
Rank 1
Shashank asked on 10 Dec 2011, 06:48 AM
hi all,
.I want to make Stacked Bar 100 3D Vertical chart.but I am not  able to get the same 3D look and feel.please tell me how to customize its style.

regards,
shashank

1 Answer, 1 is accepted

Sort by
0
Giuseppe
Telerik team
answered on 12 Dec 2011, 02:52 PM
Hi Shashank,

Unfortunately it is not possible to customize the default style of the StackedBar3D series type besides the ability to customize its Fill color via RadChart.PaletteBrushes property like this:
RadChart1.PaletteBrushes.Add(new SolidColorBrush(Colors.Red));
 
DataSeries series = new DataSeries();
series.Definition = new StackedBar3DSeriesDefinition();
 
series.Add(new DataPoint(21));
series.Add(new DataPoint(22));
series.Add(new DataPoint(25));
series.Add(new DataPoint(21));
 
RadChart1.DefaultView.ChartArea.DataSeries.Add(series);


Regards,
Giuseppe
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
Chart
Asked by
Shashank
Top achievements
Rank 1
Answers by
Giuseppe
Telerik team
Share this question
or