import React from "react";
import { ScatterPlotChart } from "../../components/Charts";
import { testData } from "./testData/scatterPlotChart";

export default {
  title: "Charts/Scatter Plot Chart ",
  component: ScatterPlotChart,
};

const Template = (args) => <ScatterPlotChart {...args} />;

export const Default = Template.bind({});
Default.args = {
  data: testData,
  chartClass: "scatterPlot1",
  yVar: "%sma(50)",
  xVar: "rsi(14)",
  dotRadius: 4,
};
