Remove now unused chartClass arg from LineChart

This commit is contained in:
Michael Lange
2021-03-21 23:00:06 -07:00
parent 17cf4ad20e
commit 295354262a

View File

@@ -55,7 +55,6 @@ export default class LineChart extends Component {
title = 'Line Chart';
description = null;
timeseries = false;
chartClass = 'is-primary';
activeAnnotation = null;
onAnnotationClick() {}
xFormat;
@@ -92,9 +91,6 @@ export default class LineChart extends Component {
get curve() {
return this.args.curve || 'linear';
}
get chartClass() {
return this.args.chartClass || 'is-primary';
}
@action
xFormat(timeseries) {