|
@@ -953,9 +953,18 @@ const setStackOrCombinChart = () => {
|
|
|
|
|
|
if(chartInfo.ChartType===3&&ExtraConfig?.HeapWay == 2) {
|
|
|
options.tooltip = {
|
|
|
- pointFormat: '<span>{series.name}</span>' +
|
|
|
- ': <b>{point.percentage:.1f}%</b> ({point.y:,.1f})<br/>',
|
|
|
- split: true
|
|
|
+ split: false,
|
|
|
+ shared: true,
|
|
|
+ dateTimeLabelFormats: {
|
|
|
+
|
|
|
+ day: '%Y/%m/%d',
|
|
|
+ week: "%Y/%m",
|
|
|
+ month: '%Y/%m',
|
|
|
+ year: '%Y/%m',
|
|
|
+ },
|
|
|
+ xDateFormat:'%Y/%m/%d',
|
|
|
+ className:'chart-tooltips-box',
|
|
|
+ pointFormat: '<span style=\"color:{point.color}\">●</span><span>{series.name}</span>' +':<b>{point.percentage:.1f}%</b> ({point.y:,.1f})<br/>'
|
|
|
}
|
|
|
}
|
|
|
|