v1.0 with SW PWA enabled
This commit is contained in:
22
frontend/node_modules/recharts/es6/chart/BarChart.js
generated
vendored
Normal file
22
frontend/node_modules/recharts/es6/chart/BarChart.js
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
/**
|
||||
* @fileOverview Bar Chart
|
||||
*/
|
||||
import { generateCategoricalChart } from './generateCategoricalChart';
|
||||
import { Bar } from '../cartesian/Bar';
|
||||
import { XAxis } from '../cartesian/XAxis';
|
||||
import { YAxis } from '../cartesian/YAxis';
|
||||
import { formatAxisMap } from '../util/CartesianUtils';
|
||||
export var BarChart = generateCategoricalChart({
|
||||
chartName: 'BarChart',
|
||||
GraphicalChild: Bar,
|
||||
defaultTooltipEventType: 'axis',
|
||||
validateTooltipEventTypes: ['axis', 'item'],
|
||||
axisComponents: [{
|
||||
axisType: 'xAxis',
|
||||
AxisComp: XAxis
|
||||
}, {
|
||||
axisType: 'yAxis',
|
||||
AxisComp: YAxis
|
||||
}],
|
||||
formatAxisMap: formatAxisMap
|
||||
});
|
||||
Reference in New Issue
Block a user