Link to home
Start Free TrialLog in
Avatar of Tony789
Tony789

asked on

MSChart control in VB 6

Please let me know if the below code is correct.  For some reason, the labels do not appear in the correct columns.  The "Test" label does not appear at all.  
With MSChart2
 
    .ColumnLabel = "Test"
    .Column = 1
    .Row = 1
    .Data = IIf(IsNull(numVar), 0, numVar)
   
    .ColumnLabel = "One"
    .Column = 2
    .Row = 1
    .Data = IIf(IsNull(numVar1), 0, numVar1)

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of ee_rlee
ee_rlee
Flag of Philippines image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial