cats-charts 0.0.62 → 0.0.64
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/fesm2022/cats-charts.mjs +2 -0
- package/fesm2022/cats-charts.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
package/fesm2022/cats-charts.mjs
CHANGED
|
@@ -2170,6 +2170,7 @@ class BarChart {
|
|
|
2170
2170
|
scale: false,
|
|
2171
2171
|
},
|
|
2172
2172
|
...(this.config?.barWidth && { barWidth: this.config?.barWidth }),
|
|
2173
|
+
...(this.config?.barMaxWidth && { barMaxWidth: this.config?.barMaxWidth }),
|
|
2173
2174
|
...s,
|
|
2174
2175
|
label: {
|
|
2175
2176
|
show: this.config?.showLabel ?? false,
|
|
@@ -2648,6 +2649,7 @@ class DoughnutChart {
|
|
|
2648
2649
|
formatter: (params) => this.config.tooltipFormatter
|
|
2649
2650
|
? this.config.tooltipFormatter(params, this.config)
|
|
2650
2651
|
: this.chartService.pieTooltipFormatter(params, this.config),
|
|
2652
|
+
...this.config.tooltip,
|
|
2651
2653
|
},
|
|
2652
2654
|
legend: {
|
|
2653
2655
|
show: false,
|