Class
WebChartScatterDataset
Warning
This class was deprecated in version 2023r1. Please use ChartScatterDataset as a replacement.
Description
Used to provide the data for a WebChart scatter chart.
Properties
Name |
Type |
Read-Only |
Shared |
---|---|---|---|
Methods
Name |
Parameters |
Returns |
Shared |
---|---|---|---|
ParamArray DataPoint As WebChartScatterDatapoint |
|||
Index As Integer, DataPoint As WebChartScatterDatapoint |
|||
dataColor As Color, dataPoint() As WebChartScatterDatapoint |
|||
dataColor As Color, ParamArray dataPoint As WebChartScatterDatapoint |
|||
Index As Integer |
|||
Index As Integer |
Enumerations
WebChartScatterDataset.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
WebChartScatterDataset.ChartType
ChartType As ChartTypes
The type of chart that used to represent the dataset in the chart.
WebChartScatterDataset.DataColor
DataColor As Color
The color that represents the dataset in the chart.
WebChartScatterDataset.Fill
Fill As Boolean
If True, the graphical object in the chart that represents the data will be filled in with a color.
WebChartScatterDataset.Label
Label As String
The label that will appear in the chart with the graphics that represent the dataset.
WebChartScatterDataset.Tag
Tag As Variant
A place to store data associated with the dataset.
Method descriptions
WebChartScatterDataset.AddDatapoint
AddDatapoint(ParamArray DataPoint As WebChartScatterDatapoint)
Adds the datapoint or datapoints to the dataset.
WebChartScatterDataset.AddDatapointAt
AddDatapointAt(Index As Integer, DataPoint As WebChartScatterDatapoint)
Adds the Datapoint to the dataset at the index passed.
WebChartScatterDataset.Constructor
Constructor(dataColor As Color, dataPoint() As WebChartScatterDatapoint)
Note
Constructors are special methods called when you create an object with the New keyword and pass in the parameters above.
Creates a new WebChartScatterDataset from the values passed.
WebChartScatterDataset.Constructor
Constructor(dataColor As Color, ParamArray dataPoint As WebChartScatterDatapoint)
Note
Constructors are special methods called when you create an object with the New keyword and pass in the parameters above.
Creates a new WebChartScatterDataset from the values passed.
WebChartScatterDataset.DatapointAt
DatapointAt(Index As Integer) As WebChartScatterDatapoint
Returns the datapoint at the index passed.
WebChartScatterDataset.RemoveAllDatapoints
RemoveAllDatapoints
Removes all datapoints from the dataset.
WebChartScatterDataset.RemoveDatapointAt
RemoveDatapointAt(Index As Integer)
Removes the datapoint at the index passed from the dataset.
Compatibility
Web projects on all supported operating systems.
See also
WebChartDataset parent class; WebChart control; WebChartScatterDatapoint, WebChartDataset, WebChartLinearDataset, and WebChartCircularDataset classes.