Sha256: b6fe64d5ef131a2150d68f0cd1045ee4605e8fb3d4b37a26e5bb29b26937bddf
Contents?: true
Size: 1.56 KB
Versions: 41
Compression:
Stored size: 1.56 KB
Contents
/* @flow */ import React from 'react' import classnames from 'classnames' import { pbChart } from '../' import { spacing } from '../utilities/spacing.js' type BarGraphProps = { axisTitle: String, xAxisCategories: Array, yAxisMin: Number, yAxisMax: Number, chartData: Array<{ name: String, data: Array<Number>, }>, className?: String, id: Number, pointStart: Number, subTitle?: String, title: String, type?: String, legend?: Boolean, toggleLegendClick?: Boolean, height?: String, } export default class BarGraph extends React.Component<BarGraphProps> { static defaultProps = { className: 'pb_bar_graph', type: 'column', legend: false, toggleLegendClick: true, } componentDidMount() { const { axisTitle, xAxisCategories, yAxisMin, yAxisMax, className, chartData, id, pointStart, subTitle, title, type, legend, height, toggleLegendClick, } = this.props new pbChart(`.${className}`, { axisTitle: axisTitle, chartData: chartData, id: id, pointStart: pointStart, subtitle: subTitle, type, title: title, xAxisCategories: xAxisCategories, yAxisMin: yAxisMin, yAxisMax: yAxisMax, legend: legend, toggleLegendClick: toggleLegendClick, height: height, }) } props: BarGraphProps render() { const { className, id } = this.props return ( <div className={classnames(className, spacing(this.props))} id={id} /> ) } }
Version data entries
41 entries across 41 versions & 1 rubygems