You are using a version of internet explorer not supported by this system. Please update your browser to Google Chrome to continue.

Tabx Free Chart Generator

Add your series data, choose your aesthetic options and freely create / download your chart!





Chart Options


Chart Type



Chart Title



Series

Paste in valid JSON series.

Categories

Separate each category with a comma.

Axis Limit

Axis Step

Series Colours

Use hex colour values in a comma sparated list.

Title Font

Axis Font

Categories Font

Legend

Chart

 



How to use

This free tool allows you to quickly create a chart from pasted data and control some of the colours and features before exporting to an image or excel office object.

You will need to format the series data into JSON script - an easy process, following the examples below:

Single Series
Single Series can be displayed in one of two ways: either all within the same series item, or split over multiple series items. The latter gives you better control over colours. The "name" element of each series item is used to create the chart legend.

{
	"name": "Series", "data":[16,22,24,35,26]
}
		
Or
{
	"name": "15-24", "data":[16]
},
{
	"name": "25-34", "data":[22]
},
{
	"name": "35-44", "data":[24]
},
{
	"name": "45-54", "data":[35]
},
{
	"name": "55-64", "data":[26]
}
		
For Pie / Donut Charts to colour correctly, use the following structure:
{
	"category": "15-24", "value":16
},
{
	"category": "25-34", "value":22
},
{
	"category": "35-44", "value":24
},
{
	"category": "45-54", "value":35
},
{
	"category": "55-64", "value":26
}
		

Multiple Series (Pie and Donut not supported)
To add mutiple series, simply add as many figures as you need to the data array of each series element. In the following item, each category of age has two figures in it - one for each gender in the default chart on this page:

{
	"name": "15-24", 
	"data":[16,22]
},{
	"name": "25-34", 
	"data":[19,21]
},{
	"name": "35-44", 
	"data":[22,23]
},{
	"name": "45-54", 
	"data":[23,21]
},{
	"name": "55-64", 
	"data":[19,13]
}
		

After choosing the other options within the chart settings box, simply click Update Chart for these changes to take effect.

This website uses cookies. Privacy Policy