📈 Line Charts

Simple

11223344556677889945453636272718189900
Download SVG
Download PNG
Download CSV
<Chart> <Serie name='People' y={[5, 32, 15, 26, 42, 25, 14, 5, 19]} /> </Chart>

	<Chart>
		<Serie name='People' y={[5, 32, 15, 26, 42, 25, 14, 5, 19]} />
	</Chart>
	

Basic

JanJanFebFebMarMarAprAprMayMayJunJunJulJulAugAugSepSepMonthsProduct Trends by Month15015012012090906060303000
Download SVG
Download PNG
Download CSV
<Chart type='line'> <Title title='Product Trends by Month' /> <Serie type='line' name='Desktops' y={[10, 41, 35, 51, 49, 62, 69, 91, 148]} curve='straight' /> <XAxis title='Months' categories={['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep']} /> <Grid rowColors={['#f3f3f3', 'transparent']} rowOpacity={0.5} yLines={true} /> </Chart>

	<Chart type='line'>
		<Title title='Product Trends by Month' />
		<Serie type='line' name='Desktops' y={[10, 41, 35, 51, 49, 62, 69, 91, 148]} curve='straight' />
		<XAxis title='Months' categories={['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep']} />
		<Grid rowColors={['#f3f3f3', 'transparent']} rowOpacity={0.5} yLines={true} />
	</Chart>
			

Line with Data Labels

High - 2013
Low - 2013
JanJanFebFebMarMarAprAprMayMayJunJunJulJulMonths2829333632323312111418171313Average High & Low Temperature4040373733333030262623231919161612129955Temperature
<Chart type='line' toolbar={false} datalabel={true} dropShadow={true}> <Title title='Average High & Low Temperature' /> <Serie type='line' name='High - 2013' y={[28, 29, 33, 36, 32, 32, 33]} color='#77B6EA' /> <Serie type='line' name='Low - 2013' y={[12, 11, 14, 18, 17, 13, 13]} color='#545454' /> <XAxis title='Months' categories={['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul']} /> <YAxis title='Temperature' min={5} max={40} /> <Legend show={true} floating={true} position='top' horizontalAlign='right' offsetY={-25} offsetX={5} /> </Chart>

	<Chart type='line' toolbar={false} datalabel={true} dropShadow={true}>
		<Title title='Average High & Low Temperature' />
		<Serie type='line' name='High - 2013' y={[28, 29, 33, 36, 32, 32, 33]} color='#77B6EA' />
		<Serie type='line' name='Low - 2013' y={[12, 11, 14, 18, 17, 13, 13]} color='#545454' />
		<XAxis title='Months' categories={['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul']} />
		<YAxis title='Temperature' min={5} max={40} />
		<Legend show={true} floating={true} position='top' horizontalAlign='right' offsetY={-25} offsetX={5} />
	</Chart>
		

Zoomable Timeserie

24 Aug24 AugSep '15Sep '1508 Sep08 Sep16 Sep16 Sep24 Sep24 SepOct '15Oct '1508 Oct08 OctStock Price Movement0.1700.1700.1600.1600.1500.1500.1400.1400.1300.1300.1200.1200.1100.1100.1000.1000.0900.0900.0800.0800.0700.070Price
Download SVG
Download PNG
Download CSV
<Chart type='area' zoom={true}> <Title title='Stock Price Movement' /> <Serie type='area' name='XYZ MOTORS' y={yData} x={xDataInSeconds} fillType='gradient' /> <XAxis type='datetime' /> <YAxis title='Price' min={0.07} max={0.17} /> </Chart>

	<Chart type='area' zoom={true}>
		<Title title='Stock Price Movement' />
		<Serie type='area' name='XYZ MOTORS' y={yData}	x={xDataInSeconds} fillType='gradient' />
		<XAxis type='datetime' />
		<YAxis title='Price' min={0.07} max={0.17} />
	</Chart>
		

Line Chart with Annotations

22446688101012121414Too many cowsNot enough cowsCovid-19RegenerationPoint AnnotationLine with Annotations40403838363634343232303028282626242422222020Cows population
Download SVG
Download PNG
Download CSV
<Chart type='line' zoom={true} zoomType='xy'> <Title title='Line with Annotations' /> <Serie type='line' name='Cows' y={[38, 22, 25, 28, 31, 39, 36]} x={[2, 4, 6, 8, 10, 12, 14]} /> <YAxis title='Cows population' min={20} max={40} /> <Annotation text='Too many cows' y={37} color='#FF4560' /> <Annotation text='Covid-19' x={3} color='#FEB019' /> <Annotation text='Point Annotation' x={8} y={28} color='#775DD0' /> <Annotation text='Regeneration' x={[5, 10]} color='#00E396' /> <Annotation text='Not enough cows' y={[21, 25]} color='#FF4560' /> </Chart>

	<Chart type='line' zoom={true} zoomType='xy'>
		<Title title='Line with Annotations' />
		<Serie type='line' name='Cows' y={[38, 22, 25, 28, 31, 39, 36]} x={[2, 4, 6, 8, 10, 12, 14]} />
		<YAxis title='Cows population' min={20} max={40} />
		<Annotation text='Too many cows' y={37} color='#FF4560' />
		<Annotation text='Covid-19' x={3} color='#FEB019' />
		<Annotation text='Point Annotation' x={8} y={28} color='#775DD0' />
		<Annotation text='Regeneration' x={[5, 10]} color='#00E396' />
		<Annotation text='Not enough cows' y={[21, 25]} color='#FF4560' />
	</Chart>
		

Stepline Chart

11223344556677889910101111Stepline Chart7070606050504040303020201010
Download SVG
Download PNG
Download CSV
<Chart type='line'> <Title title='Stepline Chart' /> <Serie type='line' name='napkins' curve='stepline' y={[34, 44, 54, 21, 15, 43, 33, 23, 66, 65, 58]} /> </Chart>

	<Chart type='line'>
		<Title title='Stepline Chart' />
		<Serie type='line' name='napkins' curve='stepline' y={[34, 44, 54, 21, 15, 43, 33, 23, 66, 65, 58]} />
	</Chart>
		

Gradient Line

Oct '21Oct '2102 Oct02 Oct03 Oct03 Oct04 Oct04 Oct05 Oct05 Oct06 Oct06 Oct07 Oct07 Oct08 Oct08 Oct09 Oct09 Oct10 Oct10 Oct11 Oct11 OctTips october808060604040202000Dollars
Download SVG
Download PNG
Download CSV
<Chart type='line' zoom={true}> <Title title='Tips october' /> <Serie type='line' name='tips' y={[34, 44, 54, 21, 12, 43, 33, 23, 66, 67, 58]} fillType='gradient' /> <XAxis type='datetime' categories={['10/1/2021', '10/2/2021', '10/3/2021', '10/4/2021', '10/5/2021', '10/6/2021', '10/7/2021', '10/8/2021', '10/9/2021', '10/10/2021', '10/11/2021']} /> <YAxis title='Dollars' /> </Chart>

	<Chart type='line' zoom={true}>
		<Title title='Tips october' />
		<Serie type='line' name='tips' y={[34, 44, 54, 21, 12, 43, 33, 23, 66, 67, 58]} fillType='gradient' />
		<XAxis type='datetime' categories={['10/1/2021', '10/2/2021', '10/3/2021', '10/4/2021', '10/5/2021', 
			'10/6/2021', '10/7/2021', '10/8/2021', '10/9/2021', '10/10/2021', '10/11/2021']} />
		<YAxis title='Dollars' />
	</Chart>
		

Missing value

1122334455667788991010111112121313141415151616Missing values16161212884400
Download SVG
Download PNG
Download CSV
<Chart type='line'> <Title title='Missing values' /> <Serie name='Peter' width={5} curve='straight' size={5} y={[5, 5, 10, 8, 7, 5, 4, null, null, null, 10, 10, 7, 8, 6, 9]} /> <Serie name='Johnny' width={5} curve='straight' size={5} y={[0, 5, null, 2, null, 10, 2, 5, null, 2, 12, null, 14, null, 9, 10]} /> <Serie name='David' width={5} curve='straight' size={5} y={[null, null, null, null, 3, 4, 1, 3, 4, 6, 7, 9, 5, null, null, null]} /> </Chart>

	<Chart type='line'>
		<Title title='Missing values' />
		<Serie name='Peter' width={5} curve='straight' size={5} 
			y={[5, 5, 10, 8, 7, 5, 4, null, null, null, 10, 10, 7, 8, 6, 9]} />
		<Serie name='Johnny' width={5} curve='straight' size={5} 
			y={[0, 5, null, 2, null, 10, 2, 5, null, 2, 12, null, 14, null, 9, 10]} />
		<Serie name='David' width={5} curve='straight' size={5} 
			y={[null, null, null, null, 3, 4, 1, 3, 4, 6, 7, 9, 5, null, null, null]} />
	</Chart>
		

🟦 Area Charts

Basic

JanJanFebFebMarMarAprAprMayMayJunJunJulJulAugAugSepSepMonthsFundamental Analysis of StocksPrice Movements15015012012090906060303000
Download SVG
Download PNG
Download CSV
<Chart type='area'> <Title title='Fundamental Analysis of Stocks' subtitle='Price Movements' /> <Serie name='StockABC' curve='straight' fillType='gradient' y={[10, 41, 35, 51, 49, 62, 69, 91, 148]} /> <XAxis title='Months' categories={['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep']} /> <YAxis opposite={true} /> </Chart>

	<Chart type='area'>
		<Title title='Fundamental Analysis of Stocks' subtitle='Price Movements' />
		<Serie name='StockABC' curve='straight' fillType='gradient' 
			y={[10, 41, 35, 51, 49, 62, 69, 91, 148]} />
		<XAxis title='Months' categories={['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep']} />
		<YAxis opposite={true} />
	</Chart>
		

Spline Area

00:0000:0001:0001:0002:0002:0003:0003:0004:0004:0005:0005:0006:0006:00Time12012090906060303000
Download SVG
Download PNG
Download CSV
<Chart type='area' zoom={true}> <Serie name='serie1' y={[31, 40, 28, 51, 42, 109, 100]} fillType='gradient' /> <Serie name='serie2' y={[11, 32, 45, 32, 34, 52, 41]} fillType='gradient' /> <XAxis title='Time' type='datetime' categories={['2018-09-19T00:00:00.000Z', '2018-09-19T01:30:00.000Z', '2018-09-19T02:30:00.000Z', '2018-09-19T03:30:00.000Z','2018-09-19T04:30:00.000Z', '2018-09-19T05:30:00.000Z', '2018-09-19T06:30:00.000Z']} /> </Chart>

<Chart type='area' zoom={true}>
	<Serie name='serie1' y={[31, 40, 28, 51, 42, 109, 100]} fillType='gradient' />
	<Serie name='serie2' y={[11, 32, 45, 32, 34, 52, 41]} fillType='gradient' />
	<XAxis title='Time' type='datetime' 
		categories={['2018-09-19T00:00:00.000Z', '2018-09-19T01:30:00.000Z', 
		'2018-09-19T02:30:00.000Z', '2018-09-19T03:30:00.000Z','2018-09-19T04:30:00.000Z', 
		'2018-09-19T05:30:00.000Z', '2018-09-19T06:30:00.000Z']} />
</Chart>
		

Negative

serie1
serie2
2015201520162016201720172018201820192019202020202021202160604040202000-20-20-40-40
Download SVG
Download PNG
Download CSV
<Chart type='area' zoom={true}> <Serie name='serie1' y={[31, 32, 28, 45, 42, 32, 52]} fillType='gradient' /> <Serie name='serie2' y={[11, 0, -15, -25, 6, 10, -3]} fillType='gradient' /> <XAxis categories={[2015, 2016, 2017, 2018, 2019, 2020, 2021]} /> <Legend show={true} /> </Chart>

	<Chart type='area' zoom={true}>
		<Serie name='serie1' y={[31, 32, 28, 45, 42, 32, 52]} fillType='gradient' />
		<Serie name='serie2' y={[11, 0, -15, -25, 6, 10, -3]} fillType='gradient' />
		<XAxis categories={[2015, 2016, 2017, 2018, 2019, 2020, 2021]} />
		<Legend show={true} />
	</Chart>
		

Stacked

serie1
serie2
serie2
00:0000:0001:0001:0002:0002:0003:0003:0004:0004:0005:0005:0006:0006:00Time280280210210140140707000
Download SVG
Download PNG
Download CSV
<Chart type='area' zoom={true} stacked={true}> <Serie name='serie1' y={[31, 40, 28, 51, 42, 109, 100]} fillType='gradient' /> <Serie name='serie2' y={[11, 32, 45, 32, 34, 52, 41]} fillType='gradient' /> <Serie name='serie2' y={[120, 10, 25, 7, 38, 100, 34]} fillType='gradient' /> <XAxis title='Time' type='datetime' categories={['2018-09-19T00:00:00.000Z', '2018-09-19T01:30:00.000Z', '2018-09-19T02:30:00.000Z', '2018-09-19T03:30:00.000Z', '2018-09-19T04:30:00.000Z', '2018-09-19T05:30:00.000Z', '2018-09-19T06:30:00.000Z']} /> <Legend show={true} position='top' horizontalAlign='left' /> </Chart>

	<Chart type='area' zoom={true} stacked={true}>
		<Serie name='serie1' y={[31, 40, 28, 51, 42, 109, 100]} fillType='gradient' />
		<Serie name='serie2' y={[11, 32, 45, 32, 34, 52, 41]} fillType='gradient' />
		<Serie name='serie2' y={[120, 10, 25, 7, 38, 100, 34]} fillType='gradient' />
		<XAxis title='Time' type='datetime' 
			categories={['2018-09-19T00:00:00.000Z', '2018-09-19T01:30:00.000Z', 
			'2018-09-19T02:30:00.000Z', '2018-09-19T03:30:00.000Z', '2018-09-19T04:30:00.000Z', 
			'2018-09-19T05:30:00.000Z', '2018-09-19T06:30:00.000Z']} />
		<Legend show={true} position='top' horizontalAlign='left' />
	</Chart>
		

Irregular Timeseries

PRODUCT A
PRODUCT C
PRODUCT B
0.00.01.01.02.02.03.03.04.04.05.05.06.06.07.07.08.08.09.09.010.010.011.011.012.012.013.013.014.014.015.015.016.016.0Time200200150150100100505000
Download SVG
Download PNG
<Chart type='area'> <Serie name='PRODUCT A' fillType='solid' fillOpacity={0.1} y={[31, 40, 28, 51, 42, 109, 100]} x={[0, 1, 2, 3, 4, 5, 6]} /> <Serie name='PRODUCT C' fillType='gradient' fillOpacity={1.0} y={[11, 32, 45, 32, 34, 52, 41]} x={[10, 11, 12, 13, 14, 15, 16]} /> <Serie name='PRODUCT B' fillType='gradient' fillOpacity={0.1} y={[120, 150, 160, 186, 168, 120, 150]} x={[5, 6, 7, 8, 9, 10, 11]} /> <XAxis title='Time' type='numeric' tickAmount={16} categories={[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]} /> <Legend show={true} position='top' horizontalAlign='left' /> </Chart>

	<Chart type='area'>
		<Serie name='PRODUCT A' fillType='solid' fillOpacity={0.1} 
			y={[31, 40, 28, 51, 42, 109, 100]} x={[0, 1, 2, 3, 4, 5, 6]} />
		<Serie name='PRODUCT C' fillType='gradient' fillOpacity={1.0} 
			y={[11, 32, 45, 32, 34, 52, 41]} x={[10, 11, 12, 13, 14, 15, 16]} />
		<Serie name='PRODUCT B' fillType='gradient' fillOpacity={0.1} 
			y={[120, 150, 160, 186, 168, 120, 150]} x={[5, 6, 7, 8, 9, 10, 11]} />
		<XAxis title='Time' type='numeric' tickAmount={16} 
			categories={[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]} />
		<Legend show={true} position='top' horizontalAlign='left' />
	</Chart>
		

Missing value

1122334455667788991010111112121313141415151616Missing values202016161212884400
Download SVG
Download PNG
Download CSV
<Chart type='area'> <Title title='Missing values' /> <Serie name='Johnny' fillType='gradient' width={5} y={[0, 5, null, 2, null, 10, 12, 15, null, 12, 12, null, 14, null, 9, 10]} /> <Serie name='David' fillType='gradient' width={5} y={[null, null, null, null, 13, 4, 11, 13, 14, 6, 17, 9, 5, null, null, null]} /> <Serie name='Peter' fillType='gradient' width={5} y={[5, 5, 10, 8, 7, 15, 4, null, null, null, 10, 10, 17, 8, 6, 9]} /> </Chart>

	<Chart type='area'>
		<Title title='Missing values' />
		<Serie name='Johnny' fillType='gradient' width={5} 
			y={[0, 5, null, 2, null, 10, 12, 15, null, 12, 12, null, 14, null, 9, 10]} />
		<Serie name='David' fillType='gradient' width={5} 
			y={[null, null, null, null, 13, 4, 11, 13, 14, 6, 17, 9, 5, null, null, null]} />
		<Serie name='Peter' fillType='gradient' width={5} 
			y={[5, 5, 10, 8, 7, 15, 4, null, null, null, 10, 10, 17, 8, 6, 9]} />
	</Chart>
		

📊 Column Charts

Basic

Net Profit
Revenue
Free Cash Flow
FebFebMarMarAprAprMayMayJunJunJulJulAugAugSepSepOctOct12012090906060303000$ (thousands)
Download SVG
Download PNG
Download CSV
<Chart type='bar' zoom={true}> <Serie name='Net Profit' y={[44, 55, 57, 56, 61, 58, 63, 60, 66]} /> <Serie name='Revenue' y={[76, 85, 101, 98, 87, 105, 91, 114, 94]} /> <Serie name='Free Cash Flow' y={[35, 41, 36, 26, 45, 48, 52, 53, 41]} /> <XAxis categories={['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct']} /> <YAxis title='$ (thousands)' /> <Legend show={true} /> </Chart>

	<Chart type='bar' zoom={true}>
		<Serie name='Net Profit' y={[44, 55, 57, 56, 61, 58, 63, 60, 66]} />
		<Serie name='Revenue' y={[76, 85, 101, 98, 87, 105, 91, 114, 94]} />
		<Serie name='Free Cash Flow' y={[35, 41, 36, 26, 45, 48, 52, 53, 41]} />

		<XAxis categories={['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct']} />
		<YAxis title='$ (thousands)' />
		<Legend show={true} />
	</Chart>
		

Stacked

PRODUCT A
PRODUCT B
PRODUCT C
PRODUCT D
Jan '11Jan '1102 Jan02 Jan03 Jan03 Jan04 Jan04 Jan05 Jan05 Jan06 Jan06 Jan44554167224313232081327111715152114217251322812012090906060303000
Download SVG
Download PNG
Download CSV
<Chart type='bar' stacked={true} zoom={true} datalabel={true}> <Serie name='PRODUCT A' y={[44, 55, 41, 67, 22, 43]} /> <Serie name='PRODUCT B' y={[13, 23, 20, 8, 13, 27]} /> <Serie name='PRODUCT C' y={[11, 17, 15, 15, 21, 14]} /> <Serie name='PRODUCT D' y={[21, 7, 25, 13, 22, 8]} /> <Legend show={true} position='right' /> <PlotOptions barBorderRadius={3} /> <XAxis type='datetime' categories={['01/01/2011 GMT', '01/02/2011 GMT', '01/03/2011 GMT', '01/04/2011 GMT', '01/05/2011 GMT', '01/06/2011 GMT']} /> </Chart>

	<Chart type='bar' stacked={true} zoom={true} datalabel={true}>
		<Serie name='PRODUCT A' y={[44, 55, 41, 67, 22, 43]} />
		<Serie name='PRODUCT B' y={[13, 23, 20, 8, 13, 27]} />
		<Serie name='PRODUCT C' y={[11, 17, 15, 15, 21, 14]} />
		<Serie name='PRODUCT D' y={[21, 7, 25, 13, 22, 8]} />

		<Legend show={true} position='right' />
		<PlotOptions barBorderRadius={3} />
		<XAxis type='datetime'
			categories={['01/01/2011 GMT', '01/02/2011 GMT', '01/03/2011 GMT', 
			'01/04/2011 GMT', '01/05/2011 GMT', '01/06/2011 GMT']} />
	</Chart>
		

Stacked 100%

PRODUCT A
PRODUCT B
PRODUCT C
2011 Q12011 Q12011 Q22011 Q22011 Q32011 Q32011 Q42011 Q42012 Q12012 Q12012 Q22012 Q22012 Q32012 Q32012 Q42012 Q465%58%54%74%39%51%30%66%19%24%26%9%23%32%48%16%16%18%20%17%38%17%22%18%10010090908080707060605050404030302020101000
Download SVG
Download PNG
Download CSV
<Chart type='bar' stacked='100%' zoom={true} datalabel={true}> <Serie name='PRODUCT A' y={[44, 55, 41, 67, 22, 43, 21, 49]} /> <Serie name='PRODUCT B' y={[13, 23, 20, 8, 13, 27, 33, 12]} /> <Serie name='PRODUCT C' y={[11, 17, 15, 15, 21, 14, 15, 13]} /> <Legend show={true} position='right' /> <XAxis categories={['2011 Q1', '2011 Q2', '2011 Q3', '2011 Q4', '2012 Q1', '2012 Q2', '2012 Q3', '2012 Q4']} /> </Chart>

	<Chart type='bar' stacked='100%' zoom={true} datalabel={true}>
		<Serie name='PRODUCT A' y={[44, 55, 41, 67, 22, 43, 21, 49]} />
		<Serie name='PRODUCT B' y={[13, 23, 20, 8, 13, 27, 33, 12]} />
		<Serie name='PRODUCT C' y={[11, 17, 15, 15, 21, 14, 15, 13]} />
		<Legend show={true} position='right' />
		<XAxis categories={['2011 Q1', '2011 Q2', '2011 Q3', '2011 Q4', 
			'2012 Q1', '2012 Q2', '2012 Q3', '2012 Q4']} />
	</Chart>
		

Negative

1177141420202727333320.0020.000.000.00-20.00-20.00-40.00-40.00-60.00-60.00Growth
Download SVG
Download PNG
Download CSV
<Chart type='bar' zoom={true}> <Serie name='PRODUCT A' y={[1.45, 5.42, 5.9, -0.42, -12.6, -18.1, -18.2, -14.16, -11.1, -6.09, 0.34, 3.88, 13.07, 5.8, 2, 7.37, 8.1, 13.57, 15.75, 17.1, 19.8, -27.03, -54.4, -47.2, -43.3, -18.6, -48.6, -41.1, -39.6, -37.6, -29.4, -21.4, -2.4]} /> <YAxis title='Growth' /> <PlotOptions barBorderRadius={1} barColumnWidth='80%' barColorRange={[-45, 0, '#FEB019']} /> <PlotOptions barColorRange={[-100, -46, '#F15B46']} /> </Chart>

	<Chart type='bar' zoom={true}>
		<Serie
			name='PRODUCT A'
			y={[1.45, 5.42, 5.9, -0.42, -12.6, -18.1, -18.2, -14.16, -11.1, -6.09, 0.34, 3.88, 13.07, 5.8,
				2, 7.37, 8.1, 13.57, 15.75, 17.1, 19.8, -27.03, -54.4, -47.2, -43.3, -18.6, -48.6, -41.1,
				-39.6, -37.6, -29.4, -21.4, -2.4]} />
		<YAxis title='Growth' />
		<PlotOptions barBorderRadius={1} barColumnWidth='80%' barColorRange={[-45, 0, '#FEB019']} />
		<PlotOptions barColorRange={[-100, -46, '#F15B46']} />
	</Chart>
		

🍫 Bar Charts

Basic

South KoreaSouth KoreaCanadaCanadaUnited KingdomUnited KingdomNetherlandsNetherlandsItalyItalyFranceFranceJapanJapanUnited StatesUnited StatesChinaChinaGermanyGermanyCountries150015001200120090090060060030030000PIB
Download SVG
Download PNG
Download CSV
<Chart type='bar' horizontal='true'> <Serie name='PIB' y={[400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]} /> <XAxis title='PIB' categories={['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan', 'United States', 'China', 'Germany' ]} /> <YAxis title='Countries' /> </Chart>

	<Chart type='bar' horizontal='true'>
		<Serie name='PIB' y={[400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]} />
		<XAxis title='PIB' categories={['South Korea', 'Canada', 'United Kingdom', 'Netherlands',
			'Italy', 'France', 'Japan', 'United States', 'China', 'Germany' ]} />
		<YAxis title='Countries' />
	</Chart>
		

Multiple Series

South KoreaSouth KoreaCanadaCanadaUnited KingdomUnited KingdomNetherlandsNetherlandsItalyItalyFranceFranceJapanJapanUnited StatesUnited StatesChinaChinaGermanyGermany15001500120012009009006006003003000040043044847054058069011001200138058011002004706904566901380876470
Download SVG
Download PNG
Download CSV
<Chart type='bar' horizontal='true' datalabel={true}> <Serie name='PIB' y={[400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]} /> <Serie name='Average income' y={[580, 1100, 200, 470, 690, 456, 690, 1380, 876, 470]} /> <XAxis categories={['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan', 'United States', 'China', 'Germany']} /> </Chart>

	<Chart type='bar' horizontal='true' datalabel={true}>
		<Serie name='PIB' y={[400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]} />
		<Serie name='Average income' y={[580, 1100, 200, 470, 690, 456, 690, 1380, 876, 470]} />
		<XAxis categories={['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 
			'France', 'Japan', 'United States', 'China', 'Germany']} />
	</Chart>
		

Stacked

20082008200920092010201020112011201220122013201320142014160160120120808040400044554137224321533233521343321217119151120975869425121932252410Fiction Books Sales
Download SVG
Download PNG
Download CSV
<Chart type='bar' stacked={true} horizontal='true' datalabel={true}> <Title title='Fiction Books Sales' /> <Serie name='Marine Sprite' y={[44, 55, 41, 37, 22, 43, 21]} /> <Serie name='Striking Calf' y={[53, 32, 33, 52, 13, 43, 32]} /> <Serie name='Tank Picture' y={[12, 17, 11, 9, 15, 11, 20]} /> <Serie name='Bucket Slope' y={[9, 7, 5, 8, 6, 9, 4]} /> <Serie name='Reborn Kid' y={[25, 12, 19, 32, 25, 24, 10]} /> <XAxis categories={[2008, 2009, 2010, 2011, 2012, 2013, 2014]} /> </Chart>

	<Chart type='bar' stacked={true} horizontal='true' datalabel={true}>
		<Title title='Fiction Books Sales' />

		<Serie name='Marine Sprite' y={[44, 55, 41, 37, 22, 43, 21]} />
		<Serie name='Striking Calf' y={[53, 32, 33, 52, 13, 43, 32]} />
		<Serie name='Tank Picture' y={[12, 17, 11, 9, 15, 11, 20]} />
		<Serie name='Bucket Slope' y={[9, 7, 5, 8, 6, 9, 4]} />
		<Serie name='Reborn Kid' y={[25, 12, 19, 32, 25, 24, 10]} />

		<XAxis categories={[2008, 2009, 2010, 2011, 2012, 2013, 2014]} />
	</Chart>
		

Stacked 100%

2008200820092009201020102011201120122012201320132014201410010080806060404020200031%45%38%27%27%33%24%37%26%30%38%16%33%37%8%14%10%7%19%8%23%6%6%5%6%7%7%5%17%10%17%23%31%18%11%Fiction Books Sales
Download SVG
Download PNG
Download CSV
<Chart type='bar' stacked='100%' horizontal='true' datalabel={true}> <Title title='Fiction Books Sales' /> <Serie name='Marine Sprite' y={[44, 55, 41, 37, 22, 43, 21]} /> <Serie name='Striking Calf' y={[53, 32, 33, 52, 13, 43, 32]} /> <Serie name='Tank Picture' y={[12, 17, 11, 9, 15, 11, 20]} /> <Serie name='Bucket Slope' y={[9, 7, 5, 8, 6, 9, 4]} /> <Serie name='Reborn Kid' y={[25, 12, 19, 32, 25, 24, 10]} /> <XAxis categories={[2008, 2009, 2010, 2011, 2012, 2013, 2014]} /> </Chart>

	<Chart type='bar' stacked='100%' horizontal='true' datalabel={true}>
		<Title title='Fiction Books Sales' />

		<Serie name='Marine Sprite' y={[44, 55, 41, 37, 22, 43, 21]} />
		<Serie name='Striking Calf' y={[53, 32, 33, 52, 13, 43, 32]} />
		<Serie name='Tank Picture' y={[12, 17, 11, 9, 15, 11, 20]} />
		<Serie name='Bucket Slope' y={[9, 7, 5, 8, 6, 9, 4]} />
		<Serie name='Reborn Kid' y={[25, 12, 19, 32, 25, 24, 10]} />

		<XAxis categories={[2008, 2009, 2010, 2011, 2012, 2013, 2014]} />
	</Chart>
		

Bar with Negative Values

Females
Males
85+85+80-8480-8475-7975-7970-7470-7465-6965-6960-6460-6455-5955-5950-5450-5445-4945-4940-4440-4435-3935-3930-3430-3425-2925-2920-2420-2415-1915-1910-1410-145-95-90-40-466442200-2-2-4-4-6-6PercentMauritius population pyramid 2011
Download SVG
Download PNG
Download CSV
<Chart type='bar' stacked={true} horizontal='true'> <Title title='Mauritius population pyramid 2011' /> <Serie name='Females' y={[-0.8, -1.05, -1.06, -1.18, -1.4, -2.2, -2.85, -3.7, -3.96, -4.22, -4.3, -4.4, -4.1, -4, -4.1, -3.4, -3.1, -2.8]} /> <Serie name='Males' y={[ 0.4, 0.65, 0.76, 0.88, 1.5, 2.1, 2.9, 3.8, 3.9, 4.2, 4, 4.3, 4.1, 4.2, 4.5, 3.9, 3.5, 3 ]} /> <XAxis title='Percent' categories={['85+', '80-84', '75-79', '70-74', '65-69', '60-64', '55-59', '50-54', '45-49', '40-44', '35-39', '30-34', '25-29', '20-24', '15-19', '10-14', '5-9', '0-4']} /> <Legend show={true} position='top' /> </Chart>

	<Chart type='bar' stacked={true} horizontal='true'>
		<Title title='Mauritius population pyramid 2011' />

		<Serie name='Females' y={[-0.8, -1.05, -1.06, -1.18, -1.4, 
			-2.2, -2.85, -3.7, -3.96, -4.22, -4.3, -4.4, -4.1, -4,
			-4.1, -3.4, -3.1, -2.8]} />
		<Serie name='Males' y={[ 0.4, 0.65, 0.76, 0.88, 1.5, 2.1, 
			2.9, 3.8, 3.9, 4.2, 4, 4.3, 4.1, 4.2, 4.5, 3.9, 3.5, 3 ]} />

		<XAxis title='Percent' categories={['85+', '80-84', '75-79', 
			'70-74', '65-69', '60-64', '55-59', '50-54', '45-49', '40-44', 
			'35-39', '30-34', '25-29', '20-24', '15-19', '10-14', '5-9', 
			'0-4']} />
		<Legend show={true} position='top' />
	</Chart>
		

Reversed Bars

South KoreaSouth KoreaCanadaCanadaUnited KingdomUnited KingdomNetherlandsNetherlandsItalyItalyFranceFranceJapanJapanUnited StatesUnited StatesChinaChinaGermanyGermany003003006006009009001200120015001500400430448470540580690110012001380
Download SVG
Download PNG
Download CSV
<Chart type='bar' horizontal='true' datalabel={true}> <Serie name='PIB' y={[400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]} /> <XAxis categories={['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan', 'United States', 'China', 'Germany']} /> <YAxis reversed={true} /> </Chart>

	<Chart type='bar' horizontal='true' datalabel={true}>
		<Serie name='PIB' y={[400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]} />
		<XAxis categories={['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 
		'Italy', 'France', 'Japan', 'United States', 'China', 'Germany']} />
		<YAxis reversed={true} />
	</Chart>
		

🦾 Mixed Charts

Line & Columns

Jan '01Jan '01Feb '01Feb '01Mar '01Mar '01Apr '01Apr '01May '01May '01Jun '01Jun '01Jul '01Jul '01Aug '01Aug '01Sep '01Sep '01Oct '01Oct '01Nov '01Nov '01Dec '01Dec '01Traffic Sources80080060060040040020020000Website Blog5050404030302020101000Social Media
Download SVG
Download PNG
Download CSV
<Chart type='line'> <Title title='Traffic Sources' /> <Serie name='Website' type='column' y={[440, 505, 414, 671, 227, 413, 201, 352, 752, 320, 257, 160]} /> <Serie name='Social' type='line' curve='straight' size={4} y={[23, 42, 35, 27, 43, 22, 17, 31, 22, 22, 12, 16]} /> <XAxis type='datetime' categories={['01/01/2001', '02/01/2001', '03/01/2001', '04/01/2001', '05/01/2001', '06/01/2001', '07/01/2001', '08/01/2001', '09/01/2001', '10/01/2001', '11/01/2001', '12/01/2001']} /> <YAxis title='Website Blog' /> <YAxis title='Social Media' opposite={true} /> </Chart>

	<Chart type='line'>
		<Title title='Traffic Sources' />

		<Serie name='Website' type='column' 
			y={[440, 505, 414, 671, 227, 413, 201, 352, 752, 320, 257, 160]} />
		<Serie name='Social' type='line' curve='straight' size={4}
			y={[23, 42, 35, 27, 43, 22, 17, 31, 22, 22, 12, 16]} />

		<XAxis type='datetime' categories={['01/01/2001', '02/01/2001', '03/01/2001',
			'04/01/2001', '05/01/2001', '06/01/2001', '07/01/2001', '08/01/2001', 
			'09/01/2001', '10/01/2001', '11/01/2001', '12/01/2001']} />

		<YAxis title='Website Blog' />
		<YAxis title='Social Media' opposite={true} />
	</Chart>
		

Multiple YAxis

XYZ - Stock Analysis (2009 - 2016)5.05.04.04.03.03.02.02.01.01.00.00.0Income10.010.08.08.06.06.04.04.02.02.00.00.0Cash Flow60.060.050.050.040.040.030.030.020.020.010.010.00.00.0Revenue
Download SVG
Download PNG
Download CSV
<Chart type='line'> <Title title='XYZ - Stock Analysis (2009 - 2016)' /> <Serie name='Income' type='column' y={[1.4, 2, 2.5, 1.5, 2.5, 2.8, 3.8, 4.6]} /> <Serie name='Cash Flow' type='column' y={[1.1, 3, 3.1, 4, 4.1, 4.9, 6.5, 8.5]} /> <Serie name='Revenue' type='line' y={[20, 29, 37, 36, 44, 45, 50, 58]} size={4} curve='straight' /> <XAxis type='datetime' categories={[2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016]} /> <YAxis title='Income' color='#008FFB' axisBorder={true} /> <YAxis title='Cash Flow' color='#00E396' opposite={true} axisBorder={true} /> <YAxis title='Revenue' color='#FEB019' opposite={true} axisBorder={true} /> </Chart>

	<Chart type='line'>
		<Title title='XYZ - Stock Analysis (2009 - 2016)' />

		<Serie name='Income' type='column' y={[1.4, 2, 2.5, 1.5, 2.5, 2.8, 3.8, 4.6]} />
		<Serie name='Cash Flow' type='column' y={[1.1, 3, 3.1, 4, 4.1, 4.9, 6.5, 8.5]} />
		<Serie name='Revenue' type='line' y={[20, 29, 37, 36, 44, 45, 50, 58]} size={4} curve='straight' />

		<XAxis type='datetime' categories={[2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016]} />
		
		<YAxis title='Income' color='#008FFB' axisBorder={true} />
		<YAxis title='Cash Flow' color='#00E396' opposite={true} axisBorder={true} />
		<YAxis title='Revenue' color='#FEB019' opposite={true} axisBorder={true} />
	</Chart>
		

Line & Area

Dec '01Dec '0102 Dec02 Dec03 Dec03 Dec04 Dec04 Dec05 Dec05 Dec06 Dec06 Dec07 Dec07 Dec08 Dec08 Dec09 Dec09 Dec10 Dec10 Dec11 Dec11 Dec60605050404030302020101000serie A808060604040202000serie B
Download SVG
Download PNG
Download CSV
<Chart type='line'> <Serie name='team A' type='area' fillOpacity='0.2' y={[44, 55, 31, 47, 31, 43, 26, 41, 31, 47, 33]} /> <Serie name='team B' type='line' y={[65, 79, 55, 71, 53, 64, 47, 62, 54, 71, 53]} /> <XAxis type='datetime' categories={[ 'Dec 01', 'Dec 02', 'Dec 03', 'Dec 04','Dec 05', 'Dec 06', 'Dec 07', 'Dec 08', 'Dec 09', 'Dec 10', 'Dec 11']} /> <YAxis title='serie A' /> <YAxis title='serie B' opposite={true} /> </Chart>

	<Chart type='line'>
		<Serie name='team A' type='area' fillOpacity='0.2' 
			y={[44, 55, 31, 47, 31, 43, 26, 41, 31, 47, 33]} />
		<Serie name='team B' type='line' y={[65, 79, 55, 71, 53, 64, 47, 62, 54, 71, 53]} />
		<XAxis type='datetime' categories={[ 'Dec 01', 'Dec 02', 'Dec 03', 'Dec 04','Dec 05', 
		'Dec 06', 'Dec 07', 'Dec 08', 'Dec 09', 'Dec 10', 'Dec 11']} />
		<YAxis title='serie A' />
		<YAxis title='serie B' opposite={true} />
	</Chart>
		

Line & Column & Area

team A
team B
team C
Jan '03Jan '03Feb '03Feb '03Mar '03Mar '03Apr '03Apr '03May '03May '03Jun '03Jun '03Jul '03Jul '03Aug '03Aug '03Sep '03Sep '03Oct '03Oct '03Nov '03Nov '036767606054544747404034342727202013137700Points
Download SVG
Download PNG
Download CSV
<Chart type='line'> <Serie name='team A' type='column' y={[23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30]} /> <Serie name='team B' type='area' fillOpacity={0.3} y={[44, 55, 41, 67, 22, 43, 21, 41, 56, 27, 43]} /> <Serie name='team C' type='line' y={[30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39]} /> <XAxis type='datetime' categories={['01/01/2003', '02/01/2003', '03/01/2003', '04/01/2003', '05/01/2003', '06/01/2003', '07/01/2003', '08/01/2003', '09/01/2003', '10/01/2003', '11/01/2003']} /> <YAxis title='Points' min={0} /> <Legend /> </Chart>

	<Chart type='line'>
		<Serie name='team A' type='column' y={[23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30]} />
		<Serie name='team B' type='area' fillOpacity={0.3} y={[44, 55, 41, 67, 22, 43, 21, 41, 56, 27, 43]} />
		<Serie name='team C' type='line' y={[30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39]} />
		<XAxis type='datetime' categories={['01/01/2003', '02/01/2003', '03/01/2003', '04/01/2003',
			'05/01/2003', '06/01/2003', '07/01/2003', '08/01/2003', '09/01/2003', '10/01/2003', '11/01/2003']} />
		<YAxis title='Points' min={0} />
		<Legend />
	</Chart>
		

Line & Scatter

0.00.01.21.22.42.43.63.64.84.86.06.08.308.307.477.476.646.645.815.814.984.984.154.153.323.322.492.491.661.660.830.830.000.00
Download SVG
Download PNG
Download CSV
<Chart type='line'> <Serie type='scatter' size={6} y={[2.14, 2.15, 3.61, 4.93, 2.4, 2.7, 4.2, 5.4, 6.1, 8.3, 5.1]} x={[1, 1.2, 1.8, 2.3, 2.6, 2.9, 3.2, 3.8, 4.5, 4.9, 5.1, 7.1, 9.18, 5.2]} /> <Serie type='line' size={0} curve='straight' y={[2, 3, 4, 5, 6, 7]} x={[1, 2, 3, 4, 5, 6]} /> <XAxis type='numeric' min={0} /> <YAxis min={0} /> </Chart>

	<Chart type='line'>
		<Serie type='scatter' size={6} y={[2.14, 2.15, 3.61, 4.93, 2.4, 2.7, 4.2, 5.4, 6.1, 8.3, 5.1]}
			x={[1, 1.2, 1.8, 2.3, 2.6, 2.9, 3.2, 3.8, 4.5, 4.9, 5.1, 7.1, 9.18, 5.2]} />
		<Serie type='line' size={0} curve='straight' y={[2, 3, 4, 5, 6, 7]} x={[1, 2, 3, 4, 5, 6]} />
		<XAxis type='numeric' min={0} />
		<YAxis min={0} />
	</Chart>
		

⏲️ Range Bar Charts

Basic

CodeCodeTestTestValidationValidationDeploymentDeployment28 Feb28 Feb02 Mar02 Mar04 Mar04 Mar06 Mar06 Mar08 Mar08 Mar10 Mar10 Mar12 Mar12 Mar14 Mar14 Mar16 Mar16 Mar18 Mar18 Mar20 Mar20 Mar
Download SVG
Download PNG
Download CSV
<Chart type='rangeBar' horizontal={true}> <Serie name='New product' y={[ [new Date('2019-03-02').getTime(), new Date('2019-03-04').getTime()], [new Date('2019-03-04').getTime(), new Date('2019-03-08').getTime()], [new Date('2019-03-08').getTime(), new Date('2019-03-12').getTime()], [new Date('2019-03-12').getTime(), new Date('2019-03-18').getTime()] ]} x={['Code', 'Test', 'Validation', 'Deployment']} /> <XAxis type='datetime' /> </Chart>

	<Chart type='rangeBar' horizontal={true}>
		<Serie name='New product'
			y={[
				[new Date('2019-03-02').getTime(), new Date('2019-03-04').getTime()],
				[new Date('2019-03-04').getTime(), new Date('2019-03-08').getTime()],
				[new Date('2019-03-08').getTime(), new Date('2019-03-12').getTime()],
				[new Date('2019-03-12').getTime(), new Date('2019-03-18').getTime()]
			]}
			x={['Code', 'Test', 'Validation', 'Deployment']}
		/>
		<XAxis type='datetime' />
	</Chart>
		

Custom colors

CodeCodeTestTestValidationValidationProductionProduction454536362727181899
Download SVG
Download PNG
<Chart type='rangeBar' horizontal={true}> <Serie y={[[10, 14]]} x={['Code']} color='#FF4560' /> <Serie y={[[15, 34]]} x={['Test']} /> <Serie y={[[12, 24]]} x={['Validation']} color='#775DD0' /> <Serie y={[[41, 44]]} x={['Production']} /> <PlotOptions barRangeBarGroupRows={true} /> </Chart>

	<Chart type='rangeBar' horizontal={true}>
		<Serie y={[[10, 14]]} x={['Code']} color='#FF4560' />
		<Serie y={[[15, 34]]} x={['Test']} />
		<Serie y={[[12, 24]]} x={['Validation']} color='#775DD0' />
		<Serie y={[[41, 44]]} x={['Production']} />
		<PlotOptions barRangeBarGroupRows={true} />
	</Chart>
		

Multi-Series

Bob
Sophie
DesignDesignCodeCodeTestTest40403232242416168800
Download SVG
Download PNG
Download CSV
<Chart type='rangeBar' horizontal={true}> <Serie name='Bob' y={[[10, 14], [15, 24], [30, 35]]} x={['Design', 'Code', 'Test']} /> <Serie name='Sophie' y={[[5, 17], [17, 34], [20, 25]]} x={['Design', 'Code', 'Test']} /> <Legend position='top' /> </Chart>

	<Chart type='rangeBar' horizontal={true}>
		<Serie name='Bob' y={[[10, 14], [15, 24], [30, 35]]}
			x={['Design', 'Code', 'Test']} />
		<Serie name='Sophie' y={[[5, 17], [17, 34],	[20, 25]]}
			x={['Design', 'Code', 'Test']} />
		<Legend position='top' />
	</Chart>
		

Grouped Bars

Bob
Sophie
DesignDesignCodeCodeTestTest3636303024241818121266
Download SVG
Download PNG
Download CSV
<Chart type='rangeBar' horizontal={true}> <Serie name='Bob' y={[[10, 14], [15, 24], [30, 35]]} x={['Design', 'Code', 'Test']} /> <Serie name='Sophie' y={[[15, 17], [24, 34], [22, 25]]} x={['Design', 'Code', 'Test']} /> <PlotOptions barRangeBarGroupRows={true} /> <Legend position='top' /> </Chart>

	<Chart type='rangeBar' horizontal={true}>
		<Serie name='Bob' y={[[10, 14], [15, 24], [30, 35]]}
			x={['Design', 'Code', 'Test']} />
		<Serie name='Sophie' y={[[15, 17], [24, 34], [22, 25]]}
			x={['Design', 'Code', 'Test']} />
		<PlotOptions barRangeBarGroupRows={true} />
		<Legend position='top' />
	</Chart>
		

🕯️ Candle Sticks Charts

Basic

23:0023:0002:0002:0004:0004:0006:0006:0008:0008:0010:0010:0012:0012:0014:0014:0016:0016:0018:0018:0020:0020:0022:0022:0007 Oct07 Oct02:0002:0004:0004:00Candle Chart6660.006660.006640.006640.006620.006620.006600.006600.006580.006580.006560.006560.00
Download SVG
Download PNG
Download CSV
<Chart type='candlestick'> <Title title='Candle Chart' /> <Serie x={[1538778600000, 1538780400000, 1538782200000, ..., 1538884800000]} y={[ [6629.81, 6650.5, 6623.04, 6633.33], [6632.01, 6643.59, 6620, 6630.11], [6630.71, 6648.95, 6623.34, 6635.65], ..., [6604.98, 6606.98, 6604.07, 6606.21] ]} /> <XAxis type='datetime' /> </Chart>

	<Chart type='candlestick'>
		<Title title='Candle Chart' />
		<Serie x={[1538778600000, 1538780400000, 1538782200000, ..., 1538884800000]}
			y={[
				[6629.81, 6650.5, 6623.04, 6633.33],
				[6632.01, 6643.59, 6620, 6630.11],
				[6630.71, 6648.95, 6623.34, 6635.65],
				..., 
				[6604.98, 6606.98, 6604.07, 6606.21]
			]} />
		<XAxis type='datetime' />
	</Chart>
		

Mixed plots

23:0023:0002:0002:0004:0004:0006:0006:0008:0008:0010:0010:0012:0012:0014:0014:0016:0016:0018:0018:0020:0020:0022:0022:0007 Oct07 Oct02:0002:0004:0004:00Candle Chart & Line6660.006660.006640.006640.006620.006620.006600.006600.006580.006580.006560.006560.00
Download SVG
Download PNG
Download CSV
<Chart type='line'> <Title title='Candle Chart' /> <Serie type='candlestick' width={1} x={[1538778600000, 1538780400000, 1538782200000, ..., 1538884800000]} y={[ [6629.81, 6650.5, 6623.04, 6633.33], [6632.01, 6643.59, 6620, 6630.11], [6630.71, 6648.95, 6623.34, 6635.65], ..., [6604.98, 6606.98, 6604.07, 6606.21] ]} /> <Serie type='line' x={[1538778600000, 1538884800000]} y={[6640, 6610]} color='#FEB019' /> <XAxis type='datetime' /> </Chart>

	<Chart type='line'>
		<Title title='Candle Chart' />
		<Serie type='candlestick' width={1} x={[1538778600000, 1538780400000, 1538782200000, ..., 1538884800000]}
			y={[
				[6629.81, 6650.5, 6623.04, 6633.33],
				[6632.01, 6643.59, 6620, 6630.11],
				[6630.71, 6648.95, 6623.34, 6635.65],
				..., 
				[6604.98, 6606.98, 6604.07, 6606.21]
			]} />
		<Serie type='line' x={[1538778600000, 1538884800000]} y={[6640, 6610]} color='#FEB019' />
		<XAxis type='datetime' />
	</Chart>
		

🐻 Box Plot

Basic

Jan 2015Jan 2015Jan 2016Jan 2016Jan 2017Jan 2017Jan 2018Jan 2018Jan 2019Jan 2019Jan 2020Jan 2020Jan 2021Jan 20211001008080606040402020
Download SVG
Download PNG
Download CSV
<Chart type="boxPlot"> <Serie x={['Jan 2015', 'Jan 2016', 'Jan 2017', 'Jan 2018', 'Jan 2019', 'Jan 2020', 'Jan 2021']} y={[ [54, 66, 69, 75, 88], [43, 65, 69, 76, 81], [31, 39, 45, 51, 59], [39, 46, 55, 65, 71], [29, 31, 35, 39, 44], [41, 49, 58, 61, 67], [54, 59, 66, 71, 88] ]} /> </Chart>

	<Chart type="boxPlot">
		<Serie
			x={['Jan 2015', 'Jan 2016', 'Jan 2017', 'Jan 2018', 'Jan 2019', 'Jan 2020', 'Jan 2021']}
			y={[
				[54, 66, 69, 75, 88],
				[43, 65, 69, 76, 81],
				[31, 39, 45, 51, 59],
				[39, 46, 55, 65, 71],
				[29, 31, 35, 39, 44],
				[41, 49, 58, 61, 67],
				[54, 59, 66, 71, 88]
			]}
		/>
	</Chart>
		

Outliers Scatter

10102020303040405050606070701201201001008080606040402020
Download SVG
Download PNG
Download CSV
<Chart type="boxPlot"> <Serie x={[10, 20, 30, 40, 50, 60, 70]} y={[[54, 66, 69, 75, 88], [43, 65, 69, 76, 81], [31, 39, 45, 51, 59], [39, 46, 55, 65, 71], [29, 31, 35, 39, 44], [41, 49, 58, 61, 67], [54, 59, 66, 71, 88]]} /> <Serie type="scatter" name="outliers high" size={4} color="#00E396" y={[100, 65, 70, 78]} x={[10, 30, 50, 50]} /> <Serie type="scatter" name="outliers low" size={4} color="#008FFB" y={[40, 25, 30, 38]} x={[10, 40, 70, 70]} /> <Tooltip intersect={true} shared={false} /> </Chart>

	<Chart type="boxPlot">
		<Serie x={[10, 20, 30, 40, 50, 60, 70]}
			y={[[54, 66, 69, 75, 88],
				[43, 65, 69, 76, 81],
				[31, 39, 45, 51, 59],
				[39, 46, 55, 65, 71],
				[29, 31, 35, 39, 44],
				[41, 49, 58, 61, 67],
				[54, 59, 66, 71, 88]]} />
		<Serie type="scatter" name="outliers high" size={4} color="#00E396"
			y={[100, 65, 70, 78]} x={[10, 30, 50, 50]} />
		<Serie type="scatter" name="outliers low" size={4} color="#008FFB"
			y={[40, 25, 30, 38]} x={[10, 40, 70, 70]} />
		<Tooltip intersect={true} shared={false} />
	</Chart>
		

Horizontal BoxPlots

Jan 2015Jan 2015Jan 2016Jan 2016Jan 2017Jan 2017Jan 2018Jan 2018Jan 2019Jan 2019Jan 2020Jan 2020Jan 2021Jan 20211001008080606040402020
Download SVG
Download PNG
Download CSV
<Chart type="boxPlot" horizontal={true}> <Serie width={2} x={['Jan 2015', 'Jan 2016', 'Jan 2017', 'Jan 2018', 'Jan 2019', 'Jan 2020', 'Jan 2021']} y={[ [54, 66, 69, 75, 88], [43, 65, 69, 76, 81], [31, 39, 45, 51, 59], [39, 46, 55, 65, 71], [29, 31, 35, 39, 44], [41, 49, 58, 61, 67], [54, 59, 66, 71, 88] ]} /> </Chart>

	<Chart type="boxPlot" horizontal={true}>
		<Serie width={2}
			x={['Jan 2015', 'Jan 2016', 'Jan 2017', 'Jan 2018', 'Jan 2019', 'Jan 2020', 'Jan 2021']}
			y={[
				[54, 66, 69, 75, 88],
				[43, 65, 69, 76, 81],
				[31, 39, 45, 51, 59],
				[39, 46, 55, 65, 71],
				[29, 31, 35, 39, 44],
				[41, 49, 58, 61, 67],
				[54, 59, 66, 71, 88]
			]}
		/>
	</Chart>
		

🥧 Pie Chart

Basic

Team A
Team B
Team C
Team D
Team E
24.9%31.1%7.3%24.3%12.4%
Download SVG
Download PNG
Download CSV
<Chart type="pie" datalabel={true}> <Serie x={['Team A', 'Team B', 'Team C', 'Team D', 'Team E']} y={[44, 55, 13, 43, 22]} /> <Legend position="right" /> </Chart>

	<Chart type="pie" datalabel={true}>
		<Serie x={['Team A', 'Team B', 'Team C', 'Team D', 'Team E']} y={[44, 55, 13, 43, 22]} />
		<Legend position="right" />
	</Chart>
		

Donut

Team A
Team B
Team C
Team D
Team E
24.9%31.1%7.3%24.3%12.4%
Download SVG
Download PNG
Download CSV
<Chart type="donut" datalabel={true}> <Serie x={['Team A', 'Team B', 'Team C', 'Team D', 'Team E']} y={[44, 55, 13, 43, 22]} /> <Legend position="right" /> </Chart>

	<Chart type="donut" datalabel={true}>
		<Serie x={['Team A', 'Team B', 'Team C', 'Team D', 'Team E']} y={[44, 55, 13, 43, 22]} />
		<Legend position="right" />
	</Chart>
		

Gradient Donut

Team A
Team B
Team C
Team D
Team E
Download SVG
Download PNG
Download CSV
<Chart type="donut"> <Serie x={['Team A', 'Team B', 'Team C', 'Team D', 'Team E']} y={[44, 55, 13, 43, 22]} fillType="gradient"/> <Legend position="right" /> </Chart>

	<Chart type="donut">
		<Serie x={['Team A', 'Team B', 'Team C', 'Team D', 'Team E']} y={[44, 55, 13, 43, 22]} 
			fillType="gradient"/>
		<Legend position="right" />
	</Chart>
		

📻 Radar Chart

Basic

JanuaryFebruaryMarchAprilMayJune1209060300
Download SVG
Download PNG
Download CSV
<Chart type="radar"> <Serie y={[80, 50, 30, 40, 100, 20]} /> <XAxis categories={['January', 'February', 'March', 'April', 'May', 'June']} /> </Chart>

	<Chart type="radar">
		<Serie y={[80, 50, 30, 40, 100, 20]} />
		<XAxis categories={['January', 'February', 'March', 'April', 'May', 'June']} />
	</Chart>