F
Frecklefoot
I'm using C# to generate a chart in Excel 2003. I use the ChartWizard method
to generate the chart and then change several options after it is generated
(e.g. Interior color, rounded corners, etc.). The problem is, I can't find
any documentation on these properties anywhere. All the docs seem to be for
VB, which, while fine as a language, doesn't translate at all to C#. For
example, this is a popular example in VB:
ChartArea.Interior.Pattern = xlLightDown;
Well, "xlLightDown" is not defined in C# and the example doesn't tell me the
type of Pattern so I could change it to other values.
In addition, I'd like documentation on what properties are available to
change (especially things like chart line color)--what I'm finding right now
are just by experimentation.
I've looked on MSDN and in the VStudio.NET 2003 help to no avail. Does
anyone have a good web references?
Sorry for being so long-winded! Thanks in advance!
to generate the chart and then change several options after it is generated
(e.g. Interior color, rounded corners, etc.). The problem is, I can't find
any documentation on these properties anywhere. All the docs seem to be for
VB, which, while fine as a language, doesn't translate at all to C#. For
example, this is a popular example in VB:
ChartArea.Interior.Pattern = xlLightDown;
Well, "xlLightDown" is not defined in C# and the example doesn't tell me the
type of Pattern so I could change it to other values.
In addition, I'd like documentation on what properties are available to
change (especially things like chart line color)--what I'm finding right now
are just by experimentation.
I've looked on MSDN and in the VStudio.NET 2003 help to no avail. Does
anyone have a good web references?
Sorry for being so long-winded! Thanks in advance!