Page 1 of 1

remove data value in a simple bar chart

Posted: Mon Aug 30, 2004 6:59 pm
by 9083172
Hello

I would like to draw a bar chart without the value of each bar drawn in the graph

I work in visual C++.net

how can I do that?

Thanks by advanced

Posted: Tue Aug 31, 2004 7:09 am
by Chris
Hi ---
I would like to draw a bar chart without the value of each bar drawn in the graph

I work in visual C++.net

how can I do that?
Try:

Code: Select all

m_Chart1.Series(0).GetMarks().SetVisible(false);

Posted: Tue Aug 31, 2004 9:06 am
by 9083172
Thanks very much

pascal