Skip to content

Commit

Permalink
fix(core): add missing properties to AxisOptions interface
Browse files Browse the repository at this point in the history
  • Loading branch information
metonym committed Aug 19, 2022
1 parent 1f9b663 commit 8891c22
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/core/src/interfaces/axis-scales.ts
Expand Up @@ -124,6 +124,15 @@ export interface AxisOptions extends BasedAxisOptions {
* option for percentage axis scale
*/
percentage?: boolean;
/**
* should be set to `true` for the
* left axis to be the primary axis
*/
main?: boolean;
/**
* used to map data on the secondary axis
*/
correspondingDatasets?: Array<string>;
}

export interface BinnedAxisOptions {
Expand Down

0 comments on commit 8891c22

Please sign in to comment.