This library is deprecated. Please see
DEPRECATED.md
.
Sometimes you just need to write on your data, and labelSeries has your back. This simple series has a similar API as the markSeries except it adds a label property to each of the rows. This label is then rendered as part of the svg tree.
<XYPlot width={300} height={300}>
<LabelSeries
animation
allowOffsetToBeReversed
data={data} />
</XYPlot>
This can be useful for annotating points, as above, or in labeling wedges as (as in the radial chart).
Like other series the labelSeries
requires the data be formatted as an array of objects with several required keys and several options ones. Here's an example
const myData = [
{x: 0, y: 0, label: 'woah!', style: {fontSize: 10}},
{x: 1, y: 0, label: 'dope city', yOffset: 5},
{x: 0, y: 1, label: 'cool Dog friend', xOffset: 5, rotation: 34}
]
The above would render three points with labels as suggested!
Type: number
The x position in coordinates of the label.
Type: number
The y position in coordinates of the label.
Type: string
The actual text to be offered.
Type: number
A number in pixels for the label to be offset from the x position specified on the row.
Type: number
A number in pixels for the label to be offset from the y position specified on the row.
Type: number
Number in degrees for the text to be rotated about its xy point.
See the XYPlot's animation
section for more information.
The allows the offset specified on the data rows to flipped if the label is too close to an edge. This allows you to make sure your labels never get randomly clipped by going offscreen.
Type: string
Provide an additional class name for the series.
Type: Array<Object>
Array of data for the series. See above data format reference.
Type: object
SVG text objects (which is what the labelSeries is made up of) accept a ton of different styles, so rather than prescribe every single one we just accept a general grab bag pf the styles. check out the mozilla page for more details.
Type: string
This attribute is used to align (start-, middle- or end-alignment) the label text horizontally relative to the data point. (Sets the text-anchor attribute for the element https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/text-anchor)
Type: string
This attribute is used to align the label text vertically relative to the datapoint. (Sets the dominant-baseline attribute for the element https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/dominant-baseline)
Type: function(value, {event, innerX, index})
A callback function which is triggered each time the mouse pointer moves. It can access the datapoint of the mark whose x position is the closest to that of the cursor.
Callback is triggered with two arguments. value
is the data point, info
object has following properties:
innerX
is the left position of the mark;index
is the index of the data point in the array of data;event
is the event object. See interaction
Type: function(value, {event, innerX, innerY, index})
A callback function which is triggered each time the mouse pointer moves. It can access the datapoint of the mark whose position is the closest to that of the cursor.
Callback is triggered with two arguments. value
is the data point, info
object has following properties:
innerX
is the left position of the mark;innerY
is the top position of the mark;index
is the index of the data point in the array of data;event
is the event object. See interaction
Type: function(d, {event})
click
event handler for the elements corresponding separate data points. First argument received is, d
, the relevant data point, and second an object with the only event
property.
Type: function(d, {event})
mouseover
event handler for the elements corresponding separate data points. First argument received is, d
, the relevant data point, and second an object with the only event
property.
Type: function(d, {event})
mouseout
event handler for the elements corresponding separate data points. First argument received is, d
, the relevant data point, and second an object with the only event
property.
Type: function(d, {event})
right-click
event handler for the elements corresponding separate data points. First argument received is, d
, the relevant data point, and second an object with the only event
property.