import React from 'react';
import { singleDateData } from 'reaviz-data-utils';
import { LineChart } from 'reaviz';
import { PointSeries } from 'reaviz';
import { ScatterPoint } from 'reaviz';
import { symbol, symbolStar } from 'd3-shape';
import { LineSeries } from 'reaviz';
export default {
tags: ['snapshot'],
title: 'Charts/Line Chart/Circle Series',
component: LineChart,
subcomponents: {
LineSeries
}
};
export const On = () => (
} />}
/>
);
export const Off = () => (
} />}
/>
);
export const OnHover = () => (
} />}
/>
);
export const OnlyFirst = () => (
} />}
/>
);
export const OnlyLast = () => (
} />}
/>
);
export const Shapes = () => (
{
const d = symbol().type(symbolStar).size(175)();
return (
);
}}
/>
}
/>
}
/>
}
/>
);