Coder Social home page Coder Social logo

hasantayyar / taucharts Goto Github PK

View Code? Open in Web Editor NEW

This project forked from targetprocess/taucharts

0.0 3.0 0.0 4.53 MB

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

Home Page: http://www.taucharts.com

License: Other

JavaScript 94.56% HTML 1.24% CSS 4.20%

taucharts's Introduction

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)

taucharts's People

Contributors

alehmr avatar alex-fomin avatar khmylov avatar leonchenko avatar mavrin avatar mdubakov avatar nadiab avatar nutic avatar unutranyholas avatar vladminsky avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.