Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update chart example data #790

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions src/stories/chart-elements/helpers/testData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1701,44 +1701,6 @@ export const simpleBaseChartDataWithNulls = [
},
];

export const simpleBaseChartWithNegativeValues = [
{
month: "Jan 21",
Sales: 4000,
"Successful Payments": 3000,
},
{
month: "Feb 21",
Sales: 3000,
"Successful Payments": 2000,
},
{
month: "Mar 21",
Sales: 2000,
"Successful Payments": 1700,
},
{
month: "Apr 21",
Sales: 2780,
"Successful Payments": -2500,
},
{
month: "May 21",
Sales: 1890,
"Successful Payments": -1890,
},
{
month: "Jun 21",
Sales: 2390,
"Successful Payments": -2000,
},
{
month: "Jul 21",
Sales: 100,
"Successful Payments": -3000,
},
];

export const simpleSingleCategoryData = [
{
city: "New York",
Expand Down
Loading