Set series Z values (bubble sizes) from data stored in a single-dimension array (for Bubble charts).
object.SetSeriesZValuesFromArray index, values
Note: This method is available when manipulating Bubble data series required for displaying Bubble charts. Note that the Chart type (bubble, bar, column, line, etc) is defined in the Swiff Chart style file (.scs) which must be loaded via the LoadStyle method.
The data stored in the array must be numerical values.
If the index argument refers to a series that does not exist in the chart object, the series is created.
The following VBScript code shows how to store the XY and Sizes values of the table below using the SetSeriesZValuesFromArray method. This table has one series named "Production". This series contains independant XY and Sizes values.
|
Dim array_x(4) Dim array_y(4) Dim array_z(4) array_x(0)= 1 array_x(1)= 2 array_x(2)= 3 array_x(3)= 4 array_x(4)= 5 array_y(0)= 12 array_y(1)= 7.5 array_y(2)= 11.3 array_y(3)= 9.2 array_y(4)= 5.3 array_z(0)= 456 array_z(1)= 478 array_z(2)= 314 array_z(3)= 125 array_z(4)= 265 'Add the first series "Production" chart.SetSeriesCaption 0, "Production" 'Fill the first series with XY values stored in the array variables chart.SetSeriesXValuesFromArray 0, array_x chart.SetSeriesYValuesFromArray 0, array_y // Fill the first series with Bubble Size values stored in the array_z variable chart.SetSeriesZValuesFromArray 0, array_z
SetSeriesXValuesFromArray Method | SetSeriesYValuesFromArray Method | SetSeriesXValuesFromString Method | SetSeriesYValuesFromString Method | GetSeriesXValue Method | GetSeriesYValue Method | SetSeriesCaption Method
Applies To: Chart Object