This package is part of the mono repository "@hpcc-js" (aka Visualization Framework), for more information including Quick Start, Gallery and Tutorials, please visit the main page on GitHub: hpcc-systems/Visualization.
- Area
- Bar
- Bubble
- Bullet
- Column
- Contour
- Gantt
- Gauge
- Half Pie
- Heat
- Hex Bin
- Line
- Pie
- Quarter Pie
- Quartile Candlestick
- Radar
- Radial Bar
- Scatter
- Stat Chart
- Step
- Summary
- Summary (Canvas)
- Word Cloud
- XYAxis
new Contour()
.target("placeholder")
.columns(["A", "B"])
.data([
[10, 10],
[20, 20],
[20, 30],
[30, 20],
[40, 30],
[30, 40],
[10, 20],
[20, 10]
])
.contourBandwidth(80)
.contourStrokeWidth(0)
.yAxisType("linear")
.xAxisType("ordinal")
.xAxisTitle("A")
.render()
;
</script>