We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
BizCharts Version:3.5.10
import React, { PureComponent } from 'react'; import { Chart, Geom, Axis, Tooltip } from 'bizcharts'; export default class ANAC0011 extends PureComponent { constructor(props) { super(props); this.state = { }; } componentDidMount() { } componentWillUnmount() { } render() { const cols = { percent: { min: 0, }, }; const data = [ { year: '1951 年', sales: 38, }, { year: '1952 年', sales: 52, }, { year: '1956 年', sales: 61, }, { year: '1957 年', sales: 145, }, { year: '1958 年', sales: 48, }, { year: '1959 年', sales: 38, }, { year: '1960 年', sales: 38, }, { year: '1962 年', sales: 38, }, ]; return ( <div> <Chart height={400} data={data} scale={cols} forceFit> <Axis name="year" /> <Axis name="sales" /> <Tooltip /> <Geom type="interval" position="year*sales" /> </Chart> </div> ); } }
import React, { PureComponent } from 'react'; import { Chart, Geom, Axis, Tooltip } from 'bizcharts'; export default class ANAC0011 extends PureComponent { constructor(props) { super(props); this.state = { }; } componentDidMount() { } componentWillUnmount() { } render() { const cols = { percent: { min: 0, }, }; const data = [ { year: '1951 年', sales: 38, }, { year: '1952 年', sales: 52, }, { year: '1956 年', sales: 61, }, { year: '1957 年', sales: 145, }, { year: '1958 年', sales: 48, }, { year: '1959 年', sales: 38, }, { year: '1960 年', sales: 38, }, { year: '1962 年', sales: 38, }, ]; return ( <div> <Chart height={400} data={data} scale={cols} forceFit> <Axis name="year" /> <Axis name="sales" /> {/* <Tooltip /> */} <Geom type="interval" position="year*sales" /> </Chart> </div> ); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
BizCharts Version:3.5.10
The text was updated successfully, but these errors were encountered: