@mui/x-charts
Version:
The community edition of the charts components (MUI X).
256 lines (255 loc) • 8.73 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from 'react';
import PropTypes from 'prop-types';
import { BarPlot } from '../BarChart';
import { LinePlot, AreaPlot, LineHighlightPlot } from '../LineChart';
import { ResponsiveChartContainer } from '../ResponsiveChartContainer';
import { DEFAULT_X_AXIS_KEY } from '../constants';
import { ChartsTooltip } from '../ChartsTooltip';
import { ChartsAxisHighlight } from '../ChartsAxisHighlight';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var SPARKLINE_DEFAULT_MARGIN = {
top: 5,
bottom: 5,
left: 5,
right: 5
};
/**
* Demos:
*
* - [SparkLine](https://mui.com/x/react-charts/sparkline/)
*
* API:
*
* - [SparkLineChart API](https://mui.com/x/api/charts/spark-line-chart/)
*/
var SparkLineChart = /*#__PURE__*/React.forwardRef(function SparkLineChart(props, ref) {
var xAxis = props.xAxis,
width = props.width,
height = props.height,
_props$margin = props.margin,
margin = _props$margin === void 0 ? SPARKLINE_DEFAULT_MARGIN : _props$margin,
colors = props.colors,
sx = props.sx,
showTooltip = props.showTooltip,
tooltip = props.tooltip,
showHighlight = props.showHighlight,
inAxisHighlight = props.axisHighlight,
children = props.children,
slots = props.slots,
slotProps = props.slotProps,
data = props.data,
_props$plotType = props.plotType,
plotType = _props$plotType === void 0 ? 'line' : _props$plotType,
_props$valueFormatter = props.valueFormatter,
valueFormatter = _props$valueFormatter === void 0 ? function (v) {
return v.toString();
} : _props$valueFormatter,
area = props.area,
_props$curve = props.curve,
curve = _props$curve === void 0 ? 'linear' : _props$curve;
var defaultXHighlight = showHighlight && plotType === 'bar' ? {
x: 'band'
} : {
x: 'none'
};
var axisHighlight = _extends({}, defaultXHighlight, inAxisHighlight);
return /*#__PURE__*/_jsxs(ResponsiveChartContainer, {
ref: ref,
series: [_extends({
type: plotType,
data: data,
valueFormatter: valueFormatter
}, plotType === 'bar' ? {} : {
area: area,
curve: curve,
disableHighlight: !showHighlight
})],
width: width,
height: height,
margin: margin,
xAxis: [_extends({
id: DEFAULT_X_AXIS_KEY,
scaleType: plotType === 'bar' ? 'band' : 'point',
data: Array.from({
length: data.length
}, function (_, index) {
return index;
}),
hideTooltip: xAxis === undefined
}, xAxis)],
colors: colors,
sx: sx,
disableAxisListener: (!showTooltip || (tooltip == null ? void 0 : tooltip.trigger) !== 'axis') && (axisHighlight == null ? void 0 : axisHighlight.x) === 'none' && (axisHighlight == null ? void 0 : axisHighlight.y) === 'none',
children: [plotType === 'bar' && /*#__PURE__*/_jsx(BarPlot, {
skipAnimation: true,
slots: slots,
slotProps: slotProps,
sx: {
shapeRendering: 'auto'
}
}), plotType === 'line' && /*#__PURE__*/_jsxs(React.Fragment, {
children: [/*#__PURE__*/_jsx(AreaPlot, {
slots: slots,
slotProps: slotProps
}), /*#__PURE__*/_jsx(LinePlot, {
slots: slots,
slotProps: slotProps
}), /*#__PURE__*/_jsx(LineHighlightPlot, {
slots: slots,
slotProps: slotProps
})]
}), /*#__PURE__*/_jsx(ChartsAxisHighlight, _extends({}, axisHighlight)), showTooltip && /*#__PURE__*/_jsx(ChartsTooltip, _extends({}, tooltip, {
slotProps: slotProps,
slots: slots
})), children]
});
});
process.env.NODE_ENV !== "production" ? SparkLineChart.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the TypeScript types and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* Set to `true` to fill spark line area.
* Has no effect if plotType='bar'.
* @default false
*/
area: PropTypes.bool,
axisHighlight: PropTypes.shape({
x: PropTypes.oneOf(['band', 'line', 'none']),
y: PropTypes.oneOf(['band', 'line', 'none'])
}),
children: PropTypes.node,
className: PropTypes.string,
/**
* Color palette used to colorize multiple series.
*/
colors: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.func]),
/**
* @default 'linear'
*/
curve: PropTypes.oneOf(['catmullRom', 'linear', 'monotoneX', 'monotoneY', 'natural', 'step', 'stepAfter', 'stepBefore']),
/**
* Data to plot.
*/
data: PropTypes.arrayOf(PropTypes.number).isRequired,
/**
* An array of objects that can be used to populate series and axes data using their `dataKey` property.
*/
dataset: PropTypes.arrayOf(PropTypes.object),
desc: PropTypes.string,
/**
* If `true`, the charts will not listen to the mouse move event.
* It might break interactive features, but will improve performance.
* @default false
*/
disableAxisListener: PropTypes.bool,
/**
* The height of the chart in px. If not defined, it takes the height of the parent element.
* @default undefined
*/
height: PropTypes.number,
/**
* The margin between the SVG and the drawing area.
* It's used for leaving some space for extra information such as the x- and y-axis or legend.
* Accepts an object with the optional properties: `top`, `bottom`, `left`, and `right`.
* @default object Depends on the charts type.
*/
margin: PropTypes.shape({
bottom: PropTypes.number,
left: PropTypes.number,
right: PropTypes.number,
top: PropTypes.number
}),
/**
* Type of plot used.
* @default 'line'
*/
plotType: PropTypes.oneOf(['bar', 'line']),
/**
* Set to `true` to highlight the value.
* With line, it shows a point.
* With bar, it shows a highlight band.
* @default false
*/
showHighlight: PropTypes.bool,
/**
* Set to `true` to enable the tooltip in the sparkline.
* @default false
*/
showTooltip: PropTypes.bool,
/**
* The props used for each component slot.
* @default {}
*/
slotProps: PropTypes.object,
/**
* Overridable component slots.
* @default {}
*/
slots: PropTypes.object,
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
title: PropTypes.string,
tooltip: PropTypes.shape({
axisContent: PropTypes.elementType,
classes: PropTypes.object,
itemContent: PropTypes.elementType,
slotProps: PropTypes.object,
slots: PropTypes.object,
trigger: PropTypes.oneOf(['axis', 'item', 'none'])
}),
/**
* Formatter used by the tooltip.
* @param {number} value The value to format.
* @returns {string} the formatted value.
*/
valueFormatter: PropTypes.func,
viewBox: PropTypes.shape({
height: PropTypes.number,
width: PropTypes.number,
x: PropTypes.number,
y: PropTypes.number
}),
/**
* The width of the chart in px. If not defined, it takes the width of the parent element.
* @default undefined
*/
width: PropTypes.number,
/**
* The xAxis configuration.
* Notice it is a single configuration object, not an array of configuration.
*/
xAxis: PropTypes.shape({
axisId: PropTypes.string,
classes: PropTypes.object,
data: PropTypes.array,
dataKey: PropTypes.string,
disableLine: PropTypes.bool,
disableTicks: PropTypes.bool,
fill: PropTypes.string,
hideTooltip: PropTypes.bool,
id: PropTypes.string,
label: PropTypes.string,
labelFontSize: PropTypes.number,
labelStyle: PropTypes.object,
max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
position: PropTypes.oneOf(['bottom', 'left', 'right', 'top']),
scaleType: PropTypes.oneOf(['band', 'linear', 'log', 'point', 'pow', 'sqrt', 'time', 'utc']),
slotProps: PropTypes.object,
slots: PropTypes.object,
stroke: PropTypes.string,
tickFontSize: PropTypes.number,
tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
tickLabelStyle: PropTypes.object,
tickMaxStep: PropTypes.number,
tickMinStep: PropTypes.number,
tickNumber: PropTypes.number,
tickSize: PropTypes.number,
valueFormatter: PropTypes.func
})
} : void 0;
export { SparkLineChart };