Quellcode durchsuchen

Merge pull request #330 from helge79/master

Render legend after update, fixes #329
tags/v1.5.8
Shivam Mishra vor 4 Jahren
committed by GitHub
Ursprung
Commit
85d7e609c8
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: 4AEE18F83AFDEB23
1 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen
  1. +3
    -2
      src/js/charts/BaseChart.js

+ 3
- 2
src/js/charts/BaseChart.js Datei anzeigen

@@ -6,12 +6,12 @@ import { BASE_MEASURES, getExtraHeight, getExtraWidth, getTopOffset, getLeftOffs
import { getColor, isValidColor } from '../utils/colors'; import { getColor, isValidColor } from '../utils/colors';
import { runSMILAnimation } from '../utils/animation'; import { runSMILAnimation } from '../utils/animation';
import { downloadFile, prepareForExport } from '../utils/export'; import { downloadFile, prepareForExport } from '../utils/export';
import { deepClone } from '../utils/helpers'
import { deepClone } from '../utils/helpers';


export default class BaseChart { export default class BaseChart {
constructor(parent, options) { constructor(parent, options) {
// deepclone options to avoid making changes to orignal object // deepclone options to avoid making changes to orignal object
options = deepClone(options)
options = deepClone(options);


this.parent = typeof parent === 'string' this.parent = typeof parent === 'string'
? document.querySelector(parent) ? document.querySelector(parent)
@@ -233,6 +233,7 @@ export default class BaseChart {
this.data = this.prepareData(data); this.data = this.prepareData(data);
this.calc(); // builds state this.calc(); // builds state
this.render(this.components, this.config.animate); this.render(this.components, this.config.animate);
this.renderLegend();
} }


render(components=this.components, animate=true) { render(components=this.components, animate=true) {


Laden…
Abbrechen
Speichern