Skip to content

Commit

Permalink
Fix Line vis scales stories
Browse files Browse the repository at this point in the history
  • Loading branch information
axelboc committed Mar 10, 2021
1 parent a45ef5d commit 1099b1c
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/stories/LineVisScales.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@ LogForY.args = {
scaleType: ScaleType.Log,
};

export const LogForNegativeY = Template.bind({});
LogForNegativeY.storyName = 'Log for negative Y';
LogForNegativeY.args = {
dataArray,
domain: [-20, -1],
scaleType: ScaleType.Log,
};

export const SymLogForY = Template.bind({});
SymLogForY.storyName = 'Sym Log for Y';
SymLogForY.args = {
Expand All @@ -45,15 +37,15 @@ SymLogForY.args = {
};

export const LogForX = Template.bind({});
LogForY.storyName = 'Log for X';
LogForX.storyName = 'Log for X';
LogForX.args = {
dataArray: dataArrayForXLog,
domain: domainForXLog,
abscissaParams: { scaleType: ScaleType.Log },
};

export const SymLogForX = Template.bind({});
LogForY.storyName = 'Sym Log for X';
SymLogForX.storyName = 'Sym Log for X';
SymLogForX.args = {
dataArray: dataArrayForXLog,
domain: domainForXLog,
Expand Down

0 comments on commit 1099b1c

Please sign in to comment.