If my chart has only a one column, I can change them rowlabels by MsChart1.Rowlabel = "Jan" etc. But the chart has two columns or more I can not do it.
Could you tell me how coding to solve it?
Thanx
Printable View
If my chart has only a one column, I can change them rowlabels by MsChart1.Rowlabel = "Jan" etc. But the chart has two columns or more I can not do it.
Could you tell me how coding to solve it?
Thanx
I may be wrong (been a while since ive used the chart control)
but I think u have to first set the rowlabelindex, then the label
VB Code:
Mschart1.RowLabelIndex = 1 MsChart1.Rowlabel = "Jan" Mschart1.RowLabelIndex = 2 MsChart1.Rowlabel = "Feb"
Thank you Static. I found my solution which are:
VB Code:
MsChart1.Row = 1 MsChart1.RowLabel = "Jan" MsChart1.Row = 2 MsChart1.RowLabel = "Feb"