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.
@@ -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
- <tr><td style=\'text-align: left; color: white\'> ${this.commonService.convertToTitleCase(this.chartConfig.argumentField)} : ${info.argumentText} </td></tr>
9027
- <tr><td style=\'text-align: left; color: white; padding-top: 5px\'> ${info.seriesName} :
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
  });