@hpcc-js/chart 2.77.0 → 2.79.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 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](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Area/Area.js)
6
- * [Bar](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Bar/Basic.js) / [Column](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Column/Column.js)
7
- * [Bubble](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/misc/Bubble.js) / [BubbleXY](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/BubbleXY/BubbleXY.js)
8
- * [Bullet](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Bullet.js)
9
- * [Contour](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Contour/Contour.js)
10
- * [Gantt](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Gantt/Gantt%20II.js)
11
- * [Gauge](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/widget/Gauge.js)
12
- * [Pie](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Pie/Pie.js) / [HalfPie](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Pie/HalfPie.js) / [QuarterPie](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Pie/QuarterPie.js)
13
- * [Radar](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Radar/Hex.js)
14
- * [RadialBar](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Radial%20Bar.js)
15
- * [Scatter](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Scatter/Sized%20Scatter.js)
16
- * [Step](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Step.js)
17
- * [Summary](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/Summary.js) / [SummaryC](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/chart/SummaryC.js)
18
- * [WordCloud](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/misc/Word%20Cloud.js)
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="target" style="width:100%;height:400px">
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("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.77.0";
7
- var BUILD_VERSION = "2.102.11";
6
+ var PKG_VERSION = "2.79.0";
7
+ var BUILD_VERSION = "2.103.2";
8
8
 
9
9
  /*! *****************************************************************************
10
10
  Copyright (c) Microsoft Corporation.