Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
2.05 kB
flavors:
- flavor: svg
path: /line/
- flavor: canvas
path: /line/canvas/
- flavor: api
path: /line/api/
Line:
package: '@nivo/line'
tags: []
stories:
- label: stacked lines
link: line--stacked-lines
- label: linear scale
link: line--linear-scale
- label: time scale
link: line--time-scale
- label: logarithmic scale
link: line--logarithmic-scale
- label: real time chart
link: line--real-time-chart
- label: custom point symbol
link: line--custom-point-symbol
- label: none linear values
link: line--non-linear-values
- label: adding markers
link: line--adding-markers
- label: holes in data
link: line--holes-in-data
- label: different serie lengths
link: line--different-serie-lengths
- label: custom min/max y
link: line--custom-min-max-y
- label: formatting axis values
link: line--formatting-axis-values
- label: formatting values
link: line--formatting-values
- label: adding custom layers
link: line--custom-layers
- label: area gradients
link: line--area-gradients
- label: axes custom styles
link: line--axes-custom-styles
description: |
Line chart with stacking ability.
Given an array of data series having an id and a nested array of points
(with x, y properties), it will compute the line for each data series.
All datum having null x or y will be treated as holes, thus portions
of the corresponding line will be skipped.
LineCanvas:
package: '@nivo/line'
tags:
- canvas
stories:
- label: holes in data
link: linecanvas--holes-in-data
- label: different serie lengths
link: linecanvas--different-serie-lengths
- label: axes custom styles
link: linecanvas--axes-custom-styles
description: |
A variation around the [Line](self:/line) component. Well suited
for large data sets as it does not impact DOM tree depth, however
you'll lose the isomorphic ability and transitions.