1.0.1 • Published 8 months ago

@licuido-ui/ui_pie-chart v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

Pie Chart

A pie chart is a circular statistical graphic that is divided into slices to illustrate numerical proportions. Each slice represents a proportion or percentage of the whole. The size of each slice is directly proportional to the quantity it represents, making it easy to visualize the relative magnitudes of the different categories.

Author

Link

Story Book Link Table

PlayGround

Try it have a fun codeBox

Installation

npm i @licuido-ui/ui_pie-chart

Image

alt text

Import component

import { PieChart } from '@licuido-ui/ui_pie-chart';

Usage

<PieChart option={{}} series={[]} />

Props

PropertyTypeDescriptionDefault Value
LineChartProps
classNamestringRepresents the class name for the LineChart component.''
sxSxPropsRepresents the style props for the LineChart component.{}
headerStyleSxPropsRepresents the style props for the header of the LineChart component.undefined
graphStyleSxPropsRepresents the style props for the graph in the LineChart component.undefined
graphComponentStyleSxPropsRepresents the style props for the LineChart component.undefined
optionsApexCharts.ApexOptionsRepresents the options for the ApexCharts.undefined
seriesApexAxisChartSeries | ApexNonAxisChartSeriesRepresents the series for the ApexCharts.[]
headerComponentstring | React.ReactNodeRepresents the header component for the LineChart.undefined
widthstring | numberRepresents the width of the LineChart component.'100%'
heightstring | numberRepresents the height of the LineChart component.'auto'

Option props

OptionDescriptionExample Value
chartObject containing the chart configuration, including the ID of the chart.{ id: 'basic-line', type: 'line' }
xaxisObject containing the configuration for the X-axis, such as categories for the chart.{ categories: [1991, 1992, 1993] }
strokeObject defining the curve of the line.{ curve: 'smooth' }
titleObject containing the title configuration for the chart.{ text: 'Line Chart' }
subtitleObject containing the subtitle configuration for the chart.{ text: 'Sample Subtitle' }
markersObject defining the size of the markers on the chart.{ size: 6, strokeWidth: 0 }
yaxisObject containing the configuration for the Y-axis, including the title of the Y-axis.{ title: { text: 'Values' } }
gridObject defining the grid configuration for the chart, including row colors and opacity.{ row: { colors: ['#f3f3f3', 'transparent'], opacity: 0.5 } }
dataLabelsObject defining whether data labels are enabled or not.{ enabled: false }
tooltipObject defining the configuration for the tooltip, including enabling it and setting the font size.{ enabled: true, style: { fontSize: '12px' } }

Sample Props

<PieChart
  width={500}
  height={300}
  options={{
    labels: ['Engineers', 'Analyst', 'Deisgners', 'Human Resource', 'Marketing'],
    dataLabels: {
      enabled: true,
    },
    plotOptions: {
      pie: {
        donut: {
          labels: {
            show: true,
          },
        },
      },
    },
    title: {
      text: 'Crayond',
      align: 'left',
    },
    subtitle: {
      text: 'policy',
      align: 'left',
    },
  }}
  series={[44, 55, 41, 17, 15]}
/>