VictoryBrushLine
VictoryBrushLine renders a brush component centered around a line. It may be used in place of the default axisComponent or gridComponent within VictoryAxis. Use VictoryBrushLine instead of VictoryBrushContainer in charts that require multiple brushes.
<VictoryChart domainPadding={50} theme={VictoryTheme.clean} > <VictoryScatter size={4} data={[ { x: 1, y: 1 }, { x: 2, y: 2 }, { x: 3, y: 4 }, ]} /> <VictoryAxis tickValues={[1, 2, 3]} gridComponent={ <VictoryBrushLine width={30} /> } /> </VictoryChart>
Component Props
allowDrag
The optional allowDrag prop accepts a boolean that enables dragging behavior for the highlighted brush area. Resizing will still be enabled when the allowDrag prop is set to false.
allowResize
The optional allowResize prop accepts a boolean that enables resizing the highlighted brush area. Dragging will still be enabled when the allowResize prop is set to false, but the dimensions of the brush area will be fixed.
brushAreaComponent
The brushAreaComponent prop specifies the component to be rendered for the interactive brush region.
This component will be supplied with the following props: x, y, width, height, and style.
When this prop is not specified, a Box component will be rendered.
brushAreaStyle
The brushAreaStyle prop adds custom styles to the brushAreaComponent. This prop should be given as
an object of SVG style attributes. Styles supplied to brushAreaStyle are assigned to the following default styles:
{
  stroke: "none",
  fill: "black",
  opacity: ({ active }) => active ? 0.2 : 0.1
}
cursor styles should not be applied via this prop, as they are dynamically assigned
brushAreaWidth
The brushAreaWidth prop is used to specify the width of the interactive brush region. If this prop is not supplied, the width prop will be used.
brushComponent
The brushComponent prop specifies the component to be rendered for the active brush.
This component will be supplied with the following props: x, y, width, height, and style.
When this prop is not specified, a Box component will be rendered.
brushDomain
The optional brushDomain prop describes the highlighted state. This prop should be given as an array of the minimum and maximum values of the highlighted region.
example: brushDomain={[50, 100]}
brushStyle
The brushStyle prop adds custom styles to the brushComponent. This prop should be given as
an object of SVG style attributes. Styles supplied to brushStyle are assigned to the following default styles:
{
  pointerEvents: "none",
  stroke: "none",
  fill: "black",
  opacity: ({ active }) => active ? 0.4 : 0.3
}
brushWidth
The brushWidth prop is used to specify the width of the active brush. If this prop is not supplied, the width prop will be used.
className
This prop specifies the class name that will be applied to the rendered element
dimension
The dimension prop specified whether the brush will be vertical ("y"), or horizontal ("x")
disable
When the disable prop is set to true, VictoryBrushLine events will not fire.
events
The events prop specifies a set of events that will be attached to the brush component group. This prop should not be set manually.
groupComponent
This prop specifies the element used to group rendered elements
handleComponent
The handleComponent prop specifies the component to be rendered for each handle.
This component will be supplied with the following props: x, y, width, height, and style.
When this prop is not specified, a Box component will be rendered.
handleStyle
The handleStyle props adds custom styles to the handleComponent. This prop should be given as
an object of SVG style attributes. Styles supplied to handleStyle are assigned to the following default styles:
{
  pointerEvents: "none",
  stroke: "none",
  fill: "none"
}
handleWidth
The handleWidth prop is used to specify the width of each handle component.
lineComponent
The lineComponent prop specifies the component to render for the underlying axis or grid line.
This component will be supplied with the following props: x1, y1, x2, y2 and style.
When this prop is not specified, an Axis component will be rendered.
onBrushDomainChange
The onBrushDomainChange prop specifies a callback function which will be called whenever the brush domain changes. The callback provided will be called with the following arguments:
currentDomain: The current brush domainprops: the current set of props forVictoryBrushLine
scale
This prop specifies scale of the parent chart with domain and range applied. This prop should not be set manually.
style
The style prop specifies the styles that will be applied to the lineComponent. This prop should be given as
an object of SVG style attributes.
type
The type is used to specify which event target a particular VictoryBrushLine belongs to. When VictoryBrushLine is used by VictoryAxis as its axisComponent or gridComponent, this prop will be set automatically to "axis" or "grid" as appropriate.
width
The width prop specified the width of both the brush and brushArea. When brushWidth or brushAreaWidth are specified, this prop will not be used