I am using the Microsoft Chart Controls for .NET 3.5 (C#) and have a chart in a winform.

My hope is to allow the user to change the color palette based on their preference.

How do I iterate through the color properties of the ChartColorPalette and add them to a combobox list?

I know it should be something like:

for each(something in ChartColorPalette)
{
  combobox.items.add(something.ToString);
}
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can enumerate the names in your enum via the GetNames class method...

foreach(string s in Enum.GetNames(typeof(ChartColorPallette))
{
}

then later if you need the enum for the name you can parse the name value...

var val = (ChartColorPallette)Enum.Parse(typeof(ChartColorPallette),"theValue");
link|improve this answer
Thanks - that works really well. – John M May 31 '10 at 19:55
feedback

See how to enumerate an enum.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.