@record-evolution/widget-linechart 1.6.9 → 1.6.10

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent widget-linechart following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "widget-linechart",
6
- "version": "1.6.9",
6
+ "version": "1.6.10",
7
7
  "type": "module",
8
8
  "main": "dist/widget-linechart.js",
9
9
  "types": "dist/src/widget-linechart.d.ts",
@@ -198,7 +198,7 @@ export class WidgetLinechart extends LitElement {
198
198
 
199
199
  registerTheme(theme?: Theme) {
200
200
  const cssTextColor = getComputedStyle(this).getPropertyValue('--re-text-color').trim()
201
- const cssBgColor = getComputedStyle(this).getPropertyValue('--re-background-color').trim()
201
+ const cssBgColor = getComputedStyle(this).getPropertyValue('--re-tile-background-color').trim()
202
202
  this.themeBgColor = cssBgColor || this.theme?.theme_object?.backgroundColor
203
203
  this.themeTitleColor = cssTextColor || this.theme?.theme_object?.title?.textStyle?.color
204
204
  this.themeSubtitleColor =