@hpcc-js/chart 2.77.0 → 2.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -17
- package/dist/index.es6.js +2 -2
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +5 -5
- package/src/Area.md +176 -0
- package/src/Bar.md +91 -0
- package/src/Bubble.md +69 -0
- package/src/Bullet.md +104 -0
- package/src/Column.md +90 -0
- package/src/Contour.md +88 -0
- package/src/Gantt.md +119 -0
- package/src/Gauge.md +148 -0
- package/src/HalfPie.md +62 -0
- package/src/Heat.md +1 -0
- package/src/HexBin.md +88 -0
- package/src/Line.md +170 -0
- package/src/Pie.md +88 -0
- package/src/QuarterPie.md +61 -0
- package/src/QuartileCandlestick.md +129 -0
- package/src/Radar.md +104 -0
- package/src/RadialBar.md +91 -0
- package/src/Scatter.md +163 -0
- package/src/StatChart.md +117 -0
- package/src/Step.md +163 -0
- package/src/Summary.md +219 -0
- package/src/SummaryC.md +154 -0
- package/src/WordCloud.md +144 -0
- package/src/XYAxis.md +149 -0
- package/src/__package__.ts +2 -2
- package/types/__package__.d.ts +2 -2
- package/types/__package__.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
package/README.md
CHANGED
|
@@ -2,20 +2,30 @@
|
|
|
2
2
|
This package is part of the mono repository "@hpcc-js" (aka Visualization Framework), for more information including [Quick Start](https://github.com/hpcc-systems/Visualization/wiki/Quick-Start), [Gallery](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/gallery.html) and [Tutorials](https://github.com/hpcc-systems/Visualization/wiki/Tutorials), please visit the main page on GitHub: [hpcc-systems/Visualization](https://github.com/hpcc-systems/Visualization).
|
|
3
3
|
|
|
4
4
|
## Exported Widgets
|
|
5
|
-
* [Area](
|
|
6
|
-
* [Bar](
|
|
7
|
-
* [Bubble](
|
|
8
|
-
* [Bullet](
|
|
9
|
-
* [
|
|
10
|
-
* [
|
|
11
|
-
* [
|
|
12
|
-
* [
|
|
13
|
-
* [
|
|
14
|
-
* [
|
|
15
|
-
* [
|
|
16
|
-
* [
|
|
17
|
-
* [
|
|
18
|
-
* [
|
|
5
|
+
* [Area](./src/Area)
|
|
6
|
+
* [Bar](./src/Bar)
|
|
7
|
+
* [Bubble](./src/Bubble)
|
|
8
|
+
* [Bullet](./src/Bullet)
|
|
9
|
+
* [Column](./src/Column)
|
|
10
|
+
* [Contour](./src/Contour)
|
|
11
|
+
* [Gantt](./src/Gantt)
|
|
12
|
+
* [Gauge](./src/Gauge)
|
|
13
|
+
* [Half Pie](./src/HalfPie)
|
|
14
|
+
* [Heat](./src/Heat)
|
|
15
|
+
* [Hex Bin](./src/HexBin)
|
|
16
|
+
* [Line](./src/Line)
|
|
17
|
+
* [Pie](./src/Pie)
|
|
18
|
+
* [Quarter Pie](./src/QuarterPie)
|
|
19
|
+
* [Quartile Candlestick](./src/QuartileCandlestick)
|
|
20
|
+
* [Radar](./src/Radar)
|
|
21
|
+
* [Radial Bar](./src/RadialBar)
|
|
22
|
+
* [Scatter](./src/Scatter)
|
|
23
|
+
* [Stat Chart](./src/StatChart)
|
|
24
|
+
* [Step](./src/Step)
|
|
25
|
+
* [Summary](./src/Summary)
|
|
26
|
+
* [Summary (Canvas)](./src/SummaryC)
|
|
27
|
+
* [Word Cloud](./src/WordCloud)
|
|
28
|
+
* [XYAxis](./src/XYAxis)
|
|
19
29
|
|
|
20
30
|
## Stand-alone HTML Example
|
|
21
31
|
|
|
@@ -44,7 +54,6 @@ This package is part of the mono repository "@hpcc-js" (aka Visualization Framew
|
|
|
44
54
|
</body>
|
|
45
55
|
</hpcc-preview>
|
|
46
56
|
</ClientOnly>
|
|
47
|
-
```
|
|
48
57
|
|
|
49
58
|
## Getting Started with @hpccjs
|
|
50
59
|
* _[Quick Start](https://github.com/hpcc-systems/Visualization/wiki/Quick-Start)_
|
|
@@ -54,13 +63,13 @@ This package is part of the mono repository "@hpcc-js" (aka Visualization Framew
|
|
|
54
63
|
|
|
55
64
|
<ClientOnly>
|
|
56
65
|
<hpcc-vitepress style="width:100%;height:600px">
|
|
57
|
-
<div id="
|
|
66
|
+
<div id="placeholder" style="width:100%;height:400px">
|
|
58
67
|
</div>
|
|
59
68
|
<script type="module">
|
|
60
69
|
import { Contour } from "@hpcc-js/chart";
|
|
61
70
|
|
|
62
71
|
new Contour()
|
|
63
|
-
.target("
|
|
72
|
+
.target("placeholder")
|
|
64
73
|
.columns(["A", "B"])
|
|
65
74
|
.data([
|
|
66
75
|
[10, 10],
|
package/dist/index.es6.js
CHANGED
|
@@ -3,8 +3,8 @@ import { select, scaleTime, timeParse, timeFormat, scaleLog, format, scalePow, s
|
|
|
3
3
|
import { normalizeRadians, degreesToRadians } from '@hpcc-js/util';
|
|
4
4
|
|
|
5
5
|
var PKG_NAME = "@hpcc-js/chart";
|
|
6
|
-
var PKG_VERSION = "2.
|
|
7
|
-
var BUILD_VERSION = "2.
|
|
6
|
+
var PKG_VERSION = "2.78.0";
|
|
7
|
+
var BUILD_VERSION = "2.103.0";
|
|
8
8
|
|
|
9
9
|
/*! *****************************************************************************
|
|
10
10
|
Copyright (c) Microsoft Corporation.
|