cats-charts 0.0.63 → 0.0.65
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 +4 -1
- 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
|
@@ -1164,6 +1164,7 @@ class Charts {
|
|
|
1164
1164
|
color:#444;
|
|
1165
1165
|
box-shadow:0 2px 8px rgba(0,0,0,0.15);
|
|
1166
1166
|
min-width:220px;
|
|
1167
|
+
max-width:500px;
|
|
1167
1168
|
">
|
|
1168
1169
|
<div style="
|
|
1169
1170
|
position: absolute;
|
|
@@ -1210,7 +1211,7 @@ class Charts {
|
|
|
1210
1211
|
</div>
|
|
1211
1212
|
|
|
1212
1213
|
<div style="margin-top:6px;">
|
|
1213
|
-
Location: <b>${d.location || '-'}</b>
|
|
1214
|
+
Location: <b style="white-space: break-spaces;">${d.location || '-'}</b>
|
|
1214
1215
|
</div>
|
|
1215
1216
|
|
|
1216
1217
|
<div style="
|
|
@@ -2649,6 +2650,7 @@ class DoughnutChart {
|
|
|
2649
2650
|
formatter: (params) => this.config.tooltipFormatter
|
|
2650
2651
|
? this.config.tooltipFormatter(params, this.config)
|
|
2651
2652
|
: this.chartService.pieTooltipFormatter(params, this.config),
|
|
2653
|
+
...this.config.tooltip,
|
|
2652
2654
|
},
|
|
2653
2655
|
legend: {
|
|
2654
2656
|
show: false,
|
|
@@ -3258,6 +3260,7 @@ class CustomChartComponent {
|
|
|
3258
3260
|
return '';
|
|
3259
3261
|
return this.chartService.timelineChartTooltipFormatter(params);
|
|
3260
3262
|
},
|
|
3263
|
+
...this.config.tooltip,
|
|
3261
3264
|
},
|
|
3262
3265
|
legend: this.buildLegend(),
|
|
3263
3266
|
grid: {
|