This will give you an idea on how to input label on the MSchart using array.
This will give you an idea on how to input label on the MSchart using array.
API Declarations
'Change Label on MSChart using array
Dim arrValues(1 to 5, 1 to 3)
Dim i as Integer
Rate This will give you an idea on how to input label on the MSchart using array.
(2(2 Vote))
For i = 1 to 5
arrValues(i, 1) = "Amodia" & i ' Labels
arrValues(i, 2) = 0 + i ' Series 1 values.
arrValues(i, 3) = 2 * i ' Series 2 values.
Next i
MsChart1.ChartData = arrValues
This will give you an idea on how to input label on the MSchart using array. Comments
No comments yet — be the first to post one!
Post a Comment