import * as React from 'react';
import { IChartProps, ILineChartPoints, ILineChartProps, LineChart } from '@uifabric/charting';
import { DefaultPalette } from 'office-ui-fabric-react/lib/Styling';
interface ILineChartMultipleExampleState {
width: number;
height: number;
}
export class LineChartMultipleExample extends React.Component<{}, ILineChartMultipleExampleState> {
constructor(props: ILineChartProps) {
super(props);
this.state = {
width: 700,
height: 300,
};
}
public render(): JSX.Element {
return (
<>
{this._styledExample()}
>
);
}
private _onLegendClickHandler = (selectedLegend: string | null): void => {
if (selectedLegend !== null) {
console.log(`Selected legend - ${selectedLegend}`);
}
};
private _styledExample(): JSX.Element {
const points: ILineChartPoints[] = [
{
data: [
{ x: new Date('2018/01/01'), y: 10, xAxisCalloutData: '2018/01/01', yAxisCalloutData: '10%' },
{ x: new Date('2018/01/15'), y: 18, xAxisCalloutData: '2018/01/15', yAxisCalloutData: '18%' },
{ x: new Date('2018/01/28'), y: 24, xAxisCalloutData: '2018/01/28', yAxisCalloutData: '24%' },
{ x: new Date('2018/02/01'), y: 25, xAxisCalloutData: '2018/02/01', yAxisCalloutData: '25%' },
{ x: new Date('2018/03/01'), y: 15, xAxisCalloutData: '2018/03/01', yAxisCalloutData: '15%' },
{ x: new Date('2018/03/15'), y: 30, xAxisCalloutData: '2018/03/15', yAxisCalloutData: '30%' },
{ x: new Date('2018/03/28'), y: 18, xAxisCalloutData: '2018/03/28', yAxisCalloutData: '18%' },
{ x: new Date('2018/04/04'), y: 32, xAxisCalloutData: '2018/04/04', yAxisCalloutData: '32%' },
{ x: new Date('2018/04/15'), y: 29, xAxisCalloutData: '2018/04/15', yAxisCalloutData: '29%' },
{ x: new Date('2018/05/05'), y: 43, xAxisCalloutData: '2018/05/05', yAxisCalloutData: '43%' },
{ x: new Date('2018/06/01'), y: 45, xAxisCalloutData: '2018/06/01', yAxisCalloutData: '45%' },
],
legend: 'First',
color: DefaultPalette.blue,
onLegendClick: this._onLegendClickHandler,
},
{
data: [
{ x: new Date('2018/01/01'), y: 10 },
{ x: new Date('2018/01/07'), y: 18 },
{ x: new Date('2018/01/15'), y: 24 },
{ x: new Date('2018/02/01'), y: 25 },
{ x: new Date('2018/03/10'), y: 15 },
{ x: new Date('2018/03/15'), y: 30 },
{ x: new Date('2018/03/20'), y: 18 },
{ x: new Date('2018/04/10'), y: 32 },
{ x: new Date('2018/04/20'), y: 29 },
{ x: new Date('2018/05/16'), y: 43 },
{ x: new Date('2018/06/01'), y: 45 },
],
legend: 'Second',
color: DefaultPalette.green,
onLegendClick: this._onLegendClickHandler,
},
{
data: [
{ x: new Date('2018/01/06'), y: 10 },
{ x: new Date('2018/01/18'), y: 18 },
{ x: new Date('2018/01/25'), y: 24 },
{ x: new Date('2018/02/10'), y: 25 },
{ x: new Date('2018/03/03'), y: 15 },
{ x: new Date('2018/03/07'), y: 30 },
{ x: new Date('2018/03/15'), y: 18 },
{ x: new Date('2018/04/10'), y: 32 },
{ x: new Date('2018/04/17'), y: 29 },
{ x: new Date('2018/05/10'), y: 43 },
{ x: new Date('2018/06/01'), y: 45 },
],
legend: 'Third',
color: DefaultPalette.red,
onLegendClick: this._onLegendClickHandler,
},
];
const data: IChartProps = {
chartTitle: 'Line Chart',
lineChartData: points,
};
const rootStyle = { width: `${this.state.width}px`, height: `${this.state.height}px` };
const timeFormat = '%m/%d';
// Passing tick values is optional, for more control.
// If you do not pass them the line chart will render them for you based on D3's standard.
const tickValues: Date[] = [
new Date('01-01-2018'),
new Date('02-01-2018'),
new Date('03-01-2018'),
new Date('04-01-2018'),
new Date('05-01-2018'),
new Date('06-01-2018'),
];
return (
);
}
private _onWidthChange = (e: React.ChangeEvent) => {
this.setState({ width: parseInt(e.target.value, 10) });
};
private _onHeightChange = (e: React.ChangeEvent) => {
this.setState({ height: parseInt(e.target.value, 10) });
};
}