Skip to content

Commit

Permalink
default values for scale
Browse files Browse the repository at this point in the history
  • Loading branch information
jogibear9988 committed Nov 28, 2023
1 parent 96cae85 commit 692ab98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chart/ChartJsWebcomponent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class ChartJsWebcomponent extends BaseCustomWebComponentConstructorAppend
}
}

#enableXScale: boolean
#enableXScale: boolean = false;
public get enableXScale() {
return this.#enableXScale;
}
Expand All @@ -79,7 +79,7 @@ export class ChartJsWebcomponent extends BaseCustomWebComponentConstructorAppend
}
}

#enableYScale: boolean
#enableYScale: boolean = false;
public get enableYScale() {
return this.#enableYScale;
}
Expand Down

0 comments on commit 692ab98

Please sign in to comment.