mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 01:10:10 +00:00
12 lines
No EOL
247 B
JavaScript
12 lines
No EOL
247 B
JavaScript
import PieChart from './pie-chart-template.js';
|
|
|
|
export default class DonutChartTemplate extends PieChart {
|
|
constructor(params) {
|
|
super(params);
|
|
this._isDonut = true;
|
|
}
|
|
|
|
render() {
|
|
return super.render();
|
|
}
|
|
} |