6 Answers, 1 is accepted

For a data-bound chart you can use the ColorField property (http://demos.telerik.com/aspnet-ajax/htmlchart/examples/functionality/custombarcolor/defaultcs.aspx), while for a programmatically created chart you can use the BackgroundColor property of the item:
(LineChart.PlotArea.Series[0]
as
LineSeries).SeriesItems[0].BackgroundColor = System.Drawing.Color.Red;
Regards,
Danail Vasilev
Telerik

Hi Danial,
Thanks, where do I use the programmatic approach, when I used it in the routine that builds my charts I got this error:
(chtUsers.PlotArea.Series[0] as LineSeries) - The type or namespace name 'LineSeries' is not valid in this scope
You should use the Telerik namespace:
using
Telerik.Web.UI;
You can also add it to Visual Studio with a short cut - click on the unknown word (LineSeries) and press CTRL + "."
Regards,
Danail Vasilev
Telerik

The problem wasn't the Telerik.web.ui reference, I think it was because mine is a ColumnChart so I used this code:
(chtUsers.PlotArea.Series[0]
as
ColumnSeries).SeriesItems[0].BackgroundColor = System.Drawing.Color.Red;
The problem is that although my ColumnSeries is valid, it's SeriesItems is empty - I have just posted a support ticket for the same problem.
Hello Al,
I have answered your ticket and I am pasting my response here for anyone else that may have a similar question and stumble on this thread:
RadHtmlChart works entirely on the client, so it also binds on the client to its data, so the server items collection is empty, and this is the expected behavior of the control: http://docs.telerik.com/devtools/aspnet-ajax/controls/htmlchart/troubleshooting/known-issues/known-limitations.
As for the BackgroundColor property - its default value is System.Drawing.Color.Empty so if you have not set it previously in the code, an empty value is to be expected. The skins (that are also based on JavaScript for this control) may change the default value of this property when rendering the chart, if the developer has not set a value explicitly, but this is not shown on the server side.
Regards,
Marin BratanovTelerik