Skip to content

Commit

Permalink
fix: change default value of stack in waterfall and progress-like
Browse files Browse the repository at this point in the history
  • Loading branch information
kangxiaoting.kk committed Oct 20, 2023
1 parent 5b9e1e4 commit 079e3da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { binaryFuzzySearch } from '@visactor/vutils-extension';
export abstract class ProgressLikeSeries<T extends IProgressLikeSeriesSpec> extends PolarSeries<T> {
static readonly mark: SeriesMarkMap = progressLikeSeriesMark;

protected _stack: boolean = false;
protected _supportStack: boolean = true;

protected _startAngle: number;
protected _endAngle: number;
Expand Down
2 changes: 2 additions & 0 deletions packages/vchart/src/series/waterfall/waterfall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export class WaterfallSeries<T extends IWaterfallSeriesSpec = IWaterfallSeriesSp

static readonly mark: SeriesMarkMap = waterfallSeriesMark;

protected _stack: boolean = true;

protected declare _theme: Maybe<IWaterfallSeriesTheme>;

protected _totalData?: SeriesData;
Expand Down

0 comments on commit 079e3da

Please sign in to comment.