ScaleType
Namespace: Wisej.Web.Ext.ChartJS
Assembly: Wisej.Web.Ext.ChartJS
Type of scale being employed.
- C#
- VB.NET
public enum ScaleType : Enum
Public Enum ScaleType As [Enum]
Fields
| Name | Description |
|---|---|
| Category | Labels are drawn in from the labels array included in the chart data. |
| Linear | The linear scale can be used to display numerical data. It can be placed on either the x or y axis. The scatter chart type automatically configures a line chart to use one of these scales for the x axis. |
| Logarithmic | The logarithmic scale is used to display logarithmic data of course. It can be placed on either the x or y axis. |
| RadialLinear | The radial linear scale is used specifically for the radar chart type. |
| Time | The time scale is used to display times and dates. It can be placed on the x axis. When building its ticks, it will automatically calculate the most comfortable unit base on the size of the scale. |