Skip to content

Commit

Permalink
fix: fix types for xaxis group
Browse files Browse the repository at this point in the history
  • Loading branch information
junedchhipa authored and damingerdai committed Aug 8, 2022
1 parent cb85453 commit 119409e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions projects/ngx-apexcharts/src/lib/model/apex-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -836,22 +836,22 @@ export interface ApexXAxis {
hour?: string;
minute?: string;
};
group?: {
groups?: { title: string; cols: number }[];
style?: {
colors?: string | string[];
fontSize?: string;
fontFamily?: string;
fontWeight?: string | number;
cssClass?: string;
};
};
formatter?(
value: string,
timestamp?: number,
opts?: any
): string | string[];
};
group?: {
groups?: { title: string; cols: number }[];
style?: {
colors?: string | string[];
fontSize?: string;
fontFamily?: string;
fontWeight?: string | number;
cssClass?: string;
};
};
axisBorder?: {
show?: boolean;
color?: string;
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"moduleResolution": "node",
"experimentalDecorators": true,
"importHelpers": true,
"target": "es5",
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
Expand Down

0 comments on commit 119409e

Please sign in to comment.