Class

ChartScatterDataset


Description

Used to provide the data for a Chart scatter chart.

Enumerations

ChartScatterDataset.ChartTypes

ChartTypes

The types of charts that can be used to represent the dataset.

Enum

Description

Bubble

A chart made up of circles allowing the representation of three dimensions of data.

Default

A Scatter chart. As default, this type will be chosen if you don't choose one.

Scatter

A chart that uses Cartesian coordinates to display values for typically two variables for a set of data.

Property descriptions


ChartScatterDataset.ChartType

ChartType As ChartTypes

The type of chart that used to represent the dataset in the chart.


ChartScatterDataset.DataColor

DataColor As Color

The color that represents the dataset in the chart.


ChartScatterDataset.Fill

Fill As Boolean

If True, the graphical object in the chart that represents the data will be filled in with a color.


ChartScatterDataset.Label

Label As String

The label that will appear in the chart with the graphics that represent the dataset.


ChartScatterDataset.Style

Style As ChartLinearStyle

The style for the value's endpoint and drawing of the connection line between values.


ChartScatterDataset.Tag

Tag As Variant

A place to store data associated with the dataset.


ChartScatterDataset.Transparency

Transparency As Double

Controls the level of transparency of the data when drawn. 0 is fully opaque. 100 is fully transparent.

Method descriptions


ChartScatterDataset.AddDatapoint

AddDatapoint(ParamArray DataPoint As ChartScatterDatapoint)

Adds the datapoint or datapoints to the dataset.


ChartScatterDataset.AddDatapointAt

AddDatapointAt(Index As Integer, DataPoint As ChartScatterDatapoint)

Adds the Datapoint to the dataset at the index passed.


ChartScatterDataset.Constructor

Constructor(dataColor As Color, dataPoint() As ChartScatterDatapoint)

Note

Constructors are special methods called when you create an object with the New keyword and pass in the parameters above.

Creates a new ChartScatterDataset from the values passed.


ChartScatterDataset.Constructor

Constructor(dataColor As Color, ParamArray dataPoint As ChartScatterDatapoint)

Note

Constructors are special methods called when you create an object with the New keyword and pass in the parameters above.

Creates a new ChartScatterDataset from the values passed.


ChartScatterDataset.Count

Count As Integer

Returns the number of the dataset.


ChartScatterDataset.DatapointAt

DatapointAt(Index As Integer) As ChartScatterDatapoint

Returns the datapoint at the index passed.


ChartScatterDataset.LastIndex

LastIndex As Integer

Returns the last index of the dataset.


ChartScatterDataset.RemoveAllDatapoints

RemoveAllDatapoints

Removes all datapoints from the dataset.


ChartScatterDataset.RemoveDatapointAt

RemoveDatapointAt(Index As Integer)

Removes the datapoint at the index passed from the dataset.

Compatibility

Desktop, Mobile and Web projects on all supported operating systems.