Your IP : 216.73.216.86


Current Path : /home/emeraadmin/public_html/node_modules/c3/src/
Upload File :
Current File : /home/emeraadmin/public_html/node_modules/c3/src/api.legend.js

import { Chart } from './core';

Chart.prototype.legend = function () {};
Chart.prototype.legend.show = function (targetIds) {
    var $$ = this.internal;
    $$.showLegend($$.mapToTargetIds(targetIds));
    $$.updateAndRedraw({withLegend: true});
};
Chart.prototype.legend.hide = function (targetIds) {
    var $$ = this.internal;
    $$.hideLegend($$.mapToTargetIds(targetIds));
    $$.updateAndRedraw({withLegend: false});
};