Просмотр исходного кода

Merge pull request #330 from helge79/master

Render legend after update, fixes #329
tags/v1.5.8
Shivam Mishra 4 лет назад
committed by GitHub
Родитель
Сommit
85d7e609c8
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: 4AEE18F83AFDEB23
1 измененных файлов: 3 добавлений и 2 удалений
  1. +3
    -2
      src/js/charts/BaseChart.js

+ 3
- 2
src/js/charts/BaseChart.js Просмотреть файл

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

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

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

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


Загрузка…
Отмена
Сохранить