Uses of Interface
org.pepstock.charba.client.configuration.HasAnimation
-
Packages that use HasAnimation Package Description org.pepstock.charba.client.configuration Contains all elements to configure a chart instance (know as chart options at instance level).org.pepstock.charba.client.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js
) for CHART.js.org.pepstock.charba.client.impl.charts Contains METER and GAUGE charts implementations (based on controllers), available out-of-the box.org.pepstock.charba.client.matrix Contains all classes to activate the Matrix controller (AKAchartjs-chart-matrix.js
) for CHART.js.org.pepstock.charba.client.sankey Contains all classes to activate the Sankey controller (AKAchartjs-chart-sankey.js
) for CHART.js.org.pepstock.charba.client.treemap Contains all classes to activate the TreeMap controller (AKAchartjs-chart-treemap.js
) for CHART.js. -
-
Uses of HasAnimation in org.pepstock.charba.client.configuration
Classes in org.pepstock.charba.client.configuration that implement HasAnimation Modifier and Type Class Description class
AbstractPieOptions
Abstract options for PIE chart.class
BarOptions
Specific options for BAR chart.class
BubbleOptions
Specific options for BUBBLE chart.class
ConfigurationOptions
Base object which maps chart configuration.
CHARBA stores the unique chart ID in the CHART.JS chart options usingcharbaId
property key.
Important topics to take care:
Responsive
When it comes to change the chart size based on the window size, a major limitation is that the canvas render size (canvas.width and .height) can not be expressed with relative values, contrary to the display size (canvas.style.width and .height).class
DoughnutOptions
Specific options for DOUGHNUT chart.class
HorizontalBarOptions
Specific options for HORIZONTAL BAR chart.class
LineOptions
Specific options for LINE chart.class
PieOptions
Specific options for PIE chart.class
PolarAreaOptions
Specific options for POLAR AREA chart.class
RadarOptions
Specific options for RADAR chart.class
ScalesOptions
Configuration of chart with multiple scales.class
ScatterOptions
Specific options for SCATTER chart.class
StackedOptions
Configuration of chart which could be stacked.
It uses Category axis for X axis and Linear for Y axis.class
TimeSeriesBarOptions
Specific options for BAR chart, for time series.class
TimeSeriesLineOptions
Specific options for LINE chartfor time series.class
Tooltips
Configuration element to set all attributes and features of the tooltip.class
TypedDataset
It contains the options to apply to all datasets of the chart.class
VerticalLineOptions
Specific options for vertical LINE chart. -
Uses of HasAnimation in org.pepstock.charba.client.geo
Classes in org.pepstock.charba.client.geo that implement HasAnimation Modifier and Type Class Description class
BubbleMapOptions
Specific options for bubble map chart.class
ChoroplethOptions
Specific options for choropleth chart. -
Uses of HasAnimation in org.pepstock.charba.client.impl.charts
Classes in org.pepstock.charba.client.impl.charts that implement HasAnimation Modifier and Type Class Description class
GaugeOptions
Specific options for GAUGE chart.class
MeterOptions
Specific options for METER chart. -
Uses of HasAnimation in org.pepstock.charba.client.matrix
Classes in org.pepstock.charba.client.matrix that implement HasAnimation Modifier and Type Class Description class
MatrixOptions
Specific options for matrix chart.
Disables legend at the beginning but you can enable when needed. -
Uses of HasAnimation in org.pepstock.charba.client.sankey
Classes in org.pepstock.charba.client.sankey that implement HasAnimation Modifier and Type Class Description class
SankeyOptions
Specific options for sankey chart.
Disables legend at the beginning but you can enable when needed. -
Uses of HasAnimation in org.pepstock.charba.client.treemap
Classes in org.pepstock.charba.client.treemap that implement HasAnimation Modifier and Type Class Description class
TreeMapOptions
Specific options for treemap chart.
-