Skip to content

D3 based data-focused charting library. Designed with passion. Flexible.

License

Unknown, Unknown licenses found

Licenses found

Unknown
license.md
Unknown
license.txt
Notifications You must be signed in to change notification settings

hasantayyar/tauCharts

 
 

Repository files navigation

TauCharts Build Status Coverage Status Code Climate

TauCharts is a Javascript charting library based on D3. Designed with passion.

Official website: www.taucharts.com

=========

#Documentation

Read the documentation here. There are some tutorials, basic and advanced topics.

http://api.taucharts.com/

#Usage

##Scatter plot

var chart1 = new tauCharts.Chart({
  type: 'scatterplot',
  x: 'milespergallon',
  y: 'price',

  data: [
    {class: "C", milespergallon: 41.26, price: 24509.74, vehicle: "Prius (1st Gen)", year: 1997},
    ...
    {class: "C", milespergallon: 37   , price: 39145   , vehicle: "Chevrolet Volt" , year: 2013}
  ],

  plugins: [
    tauCharts.api.plugins.get('trendline')()
  ]
});
chart1.renderTo('#target');

Scatterplot

##Simple horizontal bar chart

var chart1 = new tauCharts.Chart({
  type: 'horizontal-bar',
  y: 'vehicle',
  x: 'price',
  data: [
    {price: 84000 , vehicle: "ActiveHybrid 7L"},
    ...
    {price: 118000, vehicle: "Lexus LS600h/hL"}
  ]
});
chart1.renderTo('#target');

Horizontal BarChart

##Facets

var chart1 = new tauCharts.Chart({
  type: 'scatterplot',
  x: ['milespergallon'],
  y: ['class', 'price'],
  color: 'class',

  data: [
    {class: "C", milespergallon: 41.26, price: 24509.74, vehicle: "Prius (1st Gen)", year: 1997},
    ...
    {class: "C", milespergallon: 37   , price: 39145   , vehicle: "Chevrolet Volt" , year: 2013}
  ],

  plugins: [
    tauCharts.api.plugins.get('legend')(),
    tauCharts.api.plugins.get('trendline')()
  ]
});
chart1.renderTo('#target');

Facet

#License

Licensing: Apache License, Version 2.0

Have a questions? Contact us

#Change Log

[0.4.5] - 2015-06-13

Added

  • fix flex scales

[0.4.4] - 2015-06-11

Added

[0.4.3] - 2015-05-18

Added

  • stacked bar charts

[0.4.2] - 2015-04-30

Added

  • geo charts (alpha)

[0.4.1] - 2015-04-22

Added

  • Flex scales (ratio parameter for ordinal scales)
  • Auto calculate ratio for 2-level facet
  • "Settings" plugin. Allow to control fit to view-port

[0.4.0] - 2015-04-17

Added

  • New core (extended GPL syntax)
  • Adapter for compatibility with previous definitions (except guide.split parameter)

About

D3 based data-focused charting library. Designed with passion. Flexible.

Resources

License

Unknown, Unknown licenses found

Licenses found

Unknown
license.md
Unknown
license.txt

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 94.6%
  • CSS 4.2%
  • HTML 1.2%