@hpcc-js/chart 2.80.4 → 2.81.1

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/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.80.4";
7
- var BUILD_VERSION = "2.104.8";
6
+ var PKG_VERSION = "2.81.1";
7
+ var BUILD_VERSION = "2.104.13";
8
8
 
9
9
  /******************************************************************************
10
10
  Copyright (c) Microsoft Corporation.
@@ -3412,7 +3412,7 @@ Column.prototype.publish("paletteID", "default", "set", "Color palette for this
3412
3412
  Column.prototype.publish("useClonedPalette", false, "boolean", "Enable or disable using a cloned palette", null, { tags: ["Intermediate", "Shared"] });
3413
3413
  Column.prototype.publish("showValue", false, "boolean", "Show Value in column");
3414
3414
  Column.prototype.publish("showInnerText", false, "boolean", "Show Label in column");
3415
- Column.prototype.publish("showValueFormat", ".2s", "string", "D3 Format for Value", null, { disable: function (w) { return !w.showValue() || !!w.showValueAsPercent(); } });
3415
+ Column.prototype.publish("showValueFormat", ",", "string", "D3 Format for Value", null, { disable: function (w) { return !w.showValue() || !!w.showValueAsPercent(); } });
3416
3416
  Column.prototype.publish("showValueAsPercent", null, "set", "If showValue is true, optionally show value as a percentage by Series or Domain", [null, "series", "domain"], { disable: function (w) { return !w.showValue(); }, optional: true });
3417
3417
  Column.prototype.publish("showValueAsPercentFormat", ".0%", "string", "D3 Format for %", null, { disable: function (w) { return !w.showValue() || !w.showValueAsPercent(); } });
3418
3418
  Column.prototype.publish("valueCentered", false, "boolean", "Show Value in center of column");
@@ -10534,7 +10534,7 @@ var StatChart = /** @class */ (function (_super) {
10534
10534
  .pointSize(0)
10535
10535
  .xAxisType("linear")
10536
10536
  .xAxisOverlapMode("none")
10537
- .xAxisTickFormat(".2s")
10537
+ .xAxisTickFormat(",")
10538
10538
  .yAxisHidden(true)
10539
10539
  .yAxisDomainLow(0)
10540
10540
  .yAxisDomainHigh(110)