Skip to main content

ChartType

Namespace: Wisej.Web.Ext.ChartJS3

Assembly: Wisej.Web.Ext.ChartJS3

Defines the type of chart rendered by the ChartJS3 control.

public enum ChartType : Enum

Fields

NameDescription
BarA bar chart shows data as bars.
BubbleA bubble chart is used to display three dimensions of data at the same time. The location of the bubble is determined by the first two dimensions and the corresponding horizontal and vertical axes. The third dimension is represented by the size of the individual bubbles.
DoughnutPie and doughnut charts are probably the most commonly used chart there are. They are divided into segments, the arc of each segment shows the proportional value of each piece of data.
HorizontalBarThe horizontal bar chart shows data as horizontal bars.
LineA line chart plots data points on a line.
PiePie and doughnut charts are probably the most commonly used chart there are. They are divided into segments, the arc of each segment shows the proportional value of each piece of data.
PolarAreaPolar area charts are similar to pie charts, but each segment has the same angle - the radius of the segment differs depending on the value.
RadarThe radar chart shows multiple data points and the variation between them.
ScatterScatter charts are based on basic line charts with the x axis changed to a linear axis. To use a scatter chart, data must be passed as objects containing X and Y properties.