We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

a color for each column

Hi,
Usng the webchartcontrol, i want to display each column with a different color but all columns belongs to to the same series.

Is this possible? If yes how to do this?

Cheers


1 Reply

MA Manohari Syncfusion Team May 27, 2008 05:34 PM UTC

Hi Nizar,

It is possible to set different colors to the Columns in a series by two ways:

1. Using the Series.Styles[index]:

For example, if a Series contains 3 Columns/Bar, each column/Bar can be set different colors using Styles property of the series as follows.

Series.Styles[0].Interior = new BrushInfo(Color.Blue);
Series.Styles[1].Interior = new BrushInfo(Color.Green);
Series.Styles[2].Interior = new BrushInfo(Color.Red);

Please refer to following sample that illustrates the same.

Sample1.zip


2. Using PrepareStyle event:

Please refer to the following link for more information on this event.

http://websamples.syncfusion.com/docs/chart/ug/PrepareStyleEvent.html

I have attached a sample illustrating the same in the below link.

Sample2.zip


Please let me know if you need any other information.

Thanks for your interest in Syncfusion products.

Regards,
Manohari.R


Loader.
Live Chat Icon For mobile
Up arrow icon