gamma-app-controller 1.2.17 → 1.2.18
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/esm2020/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.mjs +4 -4
- package/fesm2015/gamma-app-controller.mjs +3 -3
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +3 -3
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -9022,9 +9022,9 @@ class GammaAdvanceChartComponent {
|
|
|
9022
9022
|
this.isFullScreen = false;
|
|
9023
9023
|
this.onChartPointClick = new EventEmitter();
|
|
9024
9024
|
this.customizeTooltip = (info) => ({
|
|
9025
|
-
html: `<table width=100% height=30 border=0 style=\'font-size: 13px\'>
|
|
9026
|
-
|
|
9027
|
-
<tr><td style=\'text-align: left;
|
|
9025
|
+
html: `<table style = width=100% height=30 border=0 style=\'font-size: 13px\'>
|
|
9026
|
+
<tr><td class="text-gray-800 dark:text-gray-200 " style=\'text-align: left\'> ${this.commonService.convertToTitleCase(this.chartConfig.argumentField)} : ${info.argumentText} </td></tr>
|
|
9027
|
+
<tr><td class="text-gray-800 dark:text-gray-200 " style=\'text-align: left; padding-top: 5px\'> ${info.seriesName} :
|
|
9028
9028
|
${this.getValue(info.seriesName, info.value)} </td></tr>
|
|
9029
9029
|
</table>`,
|
|
9030
9030
|
});
|