The IBGMChart interface has many useful properties and we show here some of them. |
| ' set type of chart to ChartType_Column chart.Type = ChartType_Column |
![]() |
| ' let us make the font smaller chart.Font.Size = chart.Font.Size - 2 |
![]() |
| ' set 2D mode chart.Look3D = false |
![]() |
| ' get chart data data = chart.Data ' get current number of items MsgBox UBound( data ) + 1 |
![]() |
| ' change first data item data(0) = 100 data(1) = "label1" data(2) = RGB(255,0,0) ' change second data item data(3) = 300 data(4) = "label2" data(5) = RGB(255,255,0) ' change third data item data(6) = 600 data(7) = "label3" data(8) = RGB(0,255,0) ' assign changed data to chart chart.Data = data |
![]() |
| « Back | Up | Forward » |
| © 2008 Bogemic Software. All rights reserved. All names are property of their respective owners. |