Add missing props to ChartArea type (#9123)

This commit is contained in:
Jon Rimmer 2021-05-19 15:39:27 +01:00 committed by GitHub
parent 939ffe02ab
commit 8c5d6be197
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,8 @@ export interface ChartArea {
left: number;
right: number;
bottom: number;
width: number;
height: number;
}
export interface Point {