Skip to content

ne11415/tui.chart

 
 

Repository files navigation

Toast UI Chart

ToastUI Chart supports an easy way to draw various and essential charts on your web service.

Features

Bar Chart

: represents a series of data in the form of a horizontal bar.

bar chart

Column Chart

: represents a series of data in the form of a vertical bar.

column chart

Line Chart

: represents a series of data by line segments.

line chart

Area Chart

: represents graphically quantitative data. It is based on the line chart.

area chart

Bubble Chart

: represents three dimensions of data like x, y position and circle's radius.

bubble chart

Scatter Chart

: represents tendency or distribution, using two dimensional data like x, y position.

scatter chart

Pie Chart

: represents a circular graph, which has divided sectors have to do with numeric proportion of data size to whole data quantity.

pie chart

Combo Chart (Combination Chart)

: represents combined features of two kinds of charts.

combo chart

Map Chart

: represents relationships in data by indicating data by color range on a geographical map.

map chart

Heatmap Chart

: represents relationships in data by color range.

heatmap chart

Treemap Chart

: represents hierarchical data by using rectangles and color range.

treemap chart

Radial Chart

: represents quantitative data with closed poly lines.

radial chart

Boxplot Chart

: represents visually displaying groups of numerical data quartiles. Typically used in descriptive statistics.

boxplot chart

Documentation

Dependency

Map Data Attribution

Test Environment

PC

  • IE8~11
  • Edge
  • Chrome
  • Firefox
  • Safari

Usage

Use npm

Install the latest version using npm command:

$ npm install tui-chart --save

or want to install the each version:

$ npm install tui-chart@<version> --save

To access as module format in your code:

var chart = require('tui-chart');
var barChart = chart.barChart(...);

Use bower

Install the latest version using bower command:

$ bower install tui-chart

or want to install the each version:

$ bower install tui-chart#<tag>

To access as namespace format in your code:

var barChart = new tui.chart.barChart(...);

Download/Install

Release History

License

MIT License.

Packages

No packages published

Languages

  • JavaScript 98.4%
  • CSS 1.6%