Sha256: 7aad7cb1cf780a0ee8697a96a829cdc960801a795d28407afb8c81da680cf3cb
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 KB
Contents
/* @flow */ import React from 'react' import classnames from 'classnames' import { globalProps } from '../utilities/globalProps.js' import pbChart from '../plugins/pb_chart' type BarGraphProps = { axisTitle: string, dark?: Boolean, 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, colors: array, } export default class BarGraph extends React.Component<BarGraphProps> { static defaultProps = { className: 'pb_bar_graph', dark: false, type: 'column', legend: false, toggleLegendClick: true, } componentDidMount() { const { axisTitle, dark, xAxisCategories, yAxisMin, yAxisMax, className, chartData, id, pointStart, subTitle, title, type, legend, height, toggleLegendClick, colors = [], } = this.props new pbChart(`.${className}`, { axisTitle: axisTitle, dark, chartData: chartData, colors: colors, 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(globalProps(this.props), className)} id={id} /> ) } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
playbook_ui-10.21.0.pre.alpha.lightbox.2 | app/pb_kits/playbook/pb_bar_graph/_bar_graph.jsx |
playbook_ui-10.21.0.pre.alpha.lightbox | app/pb_kits/playbook/pb_bar_graph/_bar_graph.jsx |