tauCharts

所属分类:其他
开发工具:JavaScript
文件大小:0KB
下载次数:0
上传日期:2023-04-15 17:08:51
上 传 者sh-1993
说明:  基于D3的以数据为中心的制图库。激情设计。灵活。,
(D3 based data -focused charting library. Designed with passion. Flexible.,)

文件列表:
.eslintignore (41, 2020-07-26)
.eslintrc.js (734, 2020-07-26)
.npmignore (140, 2020-07-26)
.travis.yml (305, 2020-07-26)
CHANGELOG.md (4704, 2020-07-26)
DEVELOPER-GUIDE.md (11896, 2020-07-26)
LICENSE (560, 2020-07-26)
config/ (0, 2020-07-26)
config/alias.js (321, 2020-07-26)
config/banner.js (779, 2020-07-26)
config/externals.js (631, 2020-07-26)
config/resolve.js (339, 2020-07-26)
config/scripts-module.js (502, 2020-07-26)
config/scripts-plugins.js (343, 2020-07-26)
config/webpack.config.taucharts-scripts-plugins.js (1076, 2020-07-26)
config/webpack.config.taucharts-scripts.js (796, 2020-07-26)
config/webpack.config.taucharts-styles.js (2599, 2020-07-26)
examples/ (0, 2020-07-26)
examples/datasets/ (0, 2020-07-26)
examples/datasets/cars.js (81534, 2020-07-26)
examples/datasets/countries.js (10469, 2020-07-26)
examples/datasets/data.js (5964, 2020-07-26)
examples/datasets/exoplanets.js (12943, 2020-07-26)
examples/datasets/medals.js (17296, 2020-07-26)
examples/datasets/olympics.js (2806300, 2020-07-26)
examples/datasets/tpStories.js (71965, 2020-07-26)
examples/dev-quick-test/ (0, 2020-07-26)
examples/dev-quick-test/ex-000.js (8174, 2020-07-26)
examples/dev-quick-test/ex-001.js (1602, 2020-07-26)
examples/dev-quick-test/ex-002.js (1350, 2020-07-26)
examples/dev-quick-test/ex-003.js (1042, 2020-07-26)
examples/dev-quick-test/ex-004.js (1162, 2020-07-26)
examples/dev-quick-test/ex-005.js (1070, 2020-07-26)
examples/dev-quick-test/ex-006.js (1434, 2020-07-26)
examples/dev-quick-test/ex-007.js (2539, 2020-07-26)
examples/dev-quick-test/ex-008.js (439, 2020-07-26)
examples/dev-quick-test/ex-009.js (423, 2020-07-26)
... ...

Taucharts [![Build Status](https://travis-ci.org/TargetProcess/tauCharts.svg?branch=master)](https://travis-ci.org/TargetProcess/tauCharts) [![Coverage Status](https://img.shields.io/coveralls/TargetProcess/tauCharts.svg)](https://coveralls.io/r/TargetProcess/tauCharts) [![Code Climate](https://codeclimate.com/github/TargetProcess/tauCharts/badges/gpa.svg)](https://codeclimate.com/github/TargetProcess/tauCharts) [![Slack Status](https://slack.taucharts.com/badge.svg)](https://slack.taucharts.com/) ====== Taucharts is a [data-focused JavaScript charting library](https://blog.taucharts.com/taucharts-data-focused-charting-library/) based on D3 and designed with passion. ##### Official website: [www.taucharts.com](https://www.taucharts.com) ##### Documentation: [api.taucharts.com](https://api.taucharts.com) ##### Project blog: [blog.taucharts.com](https://blog.taucharts.com) ## Why use Taucharts? #### Simplicity Data plays a key role in Taucharts. The library provides a declarative interface for fast mapping of data fields to visual properties. #### Flexibility The library's architecture allows you to build [facets](https://api.taucharts.com/basic/facet.html) and extend chart behaviour with reusable plugins. #### Design The Taucharts team is passionate about beautiful design. #### ... Dive into the high-level [Taucharts concepts](https://blog.taucharts.com/taucharts-data-focused-charting-library/) and [usage reviews](#taucharts-examples--usage-reviews). If you want to contribute - see [how to run the project locally](#how-to-run-the-project-locally) ## How to use Taucharts #### Using Taucharts with a CDN Load JavaScript dependencies ```html ``` Include a CSS file, as well ```html ``` NOTE: taucharts@2 is compatible with D3 v4 and v5. Use taucharts@1 if you work with obsolete D3 versions. #### Downloading Taucharts using Bower ```bash bower install taucharts ``` #### Downloading Taucharts using npm ```bash npm install taucharts ``` ___ Below are some popular usage scenarios. For more examples, see our experimental [sample page](https://demo.taucharts.com/). #### Scatter plot ```javascript var chart = new Taucharts.Chart({ type : 'scatterplot', x : 'Cycle Time', y : 'SUM(Bugs Count)', color : 'Team', size : 'Sum(User Stories Count)', data : [{'Cycle Time': 186, 'SUM(Bugs Count)': 34, 'Team': 'HDP'...}, ...], plugins: [ Taucharts.api.plugins.get('legend')(), Taucharts.api.plugins.get('tooltip')() ] }); ``` [![Scatterplot](examples/screenshots/Taucharts_Scatterplot.png)](https://api.taucharts.com/basic/scatterplot.html) See [scatter plot documentation](https://api.taucharts.com/basic/scatterplot.html) ___ #### Line chart ```javascript var chart = new Taucharts.Chart({ type : 'line', y : 'Y Scale', x : 'X Scale', color: 'Team', size : 'Effort', label: 'Effort', data : [{'Team': 'Alpha', 'Effort': 40, 'Y Scale': 23, 'X Scale': 72 }, ...] }); ``` [![Line Chart](examples/screenshots/Taucharts_Line.png)](https://api.taucharts.com/basic/line.html) See [line chart documentation](https://api.taucharts.com/basic/line.html) ___ #### Bar chart ```javascript var chart = new Taucharts.Chart({ type : 'bar', x : 'team', y : 'effort', color: 'priority', data : [{'team': 'd', 'effort': 1, 'count': 1, 'priority': 'low'}, ...] }); ``` [![Bar Chart](examples/screenshots/Taucharts_Bar.png)](https://api.taucharts.com/basic/bar.html) See [bar chart documentation](https://api.taucharts.com/basic/bar.html) ___ #### Horizontal bar chart ```javascript var chart = new Taucharts.Chart({ type : 'horizontal-bar', x : 'count', y : 'team', color: 'priority', data : [{'team': 'alpha', 'effort': 8, 'priority': 'major'}, ...] }); ``` [![Horizontal Bar Chart](examples/screenshots/Taucharts_Horizontal-bar.png)](https://api.taucharts.com/basic/horizontal-bar.html) See [horizontal bar chart documentation](https://api.taucharts.com/basic/horizontal-bar.html) ___ #### Stacked bar chart ```javascript var chart = new Taucharts.Chart({ type : 'stacked-bar', x : 'age', y : ['count', 'sport'], color: 'country', data : [{country: 'Canada', sport: 'Biathlon', medals: 20, age: 22}, ...] }); ``` [![Stacked Bar Chart](examples/screenshots/Taucharts_Stacked-bar.png)](https://api.taucharts.com/basic/stacked-bar.html) See [stacked bar chart documentation](https://api.taucharts.com/basic/stacked-bar.html) ___ #### Horizontal stacked bar chart ```javascript var chart = new Taucharts.Chart({ type : 'horizontal-stacked-bar', y : 'process', x : 'count', color: 'stage', data : [{process: 'sales', stage: 'visit', count: 100}, ...] }); ``` [![Horizontal Stacked Bar Chart](examples/screenshots/Taucharts_Horizontal-stacked-bar.png)](https://api.taucharts.com/basic/horizontal-stacked-bar.html) See [horizontal stacked bar chart documentation](https://api.taucharts.com/basic/horizontal-stacked-bar.html) ___ #### Stacked area chart ```javascript var chart = new Taucharts.Chart({ type : 'stacked-area', y : 'effort', x : 'date', color: 'team', guide: { interpolate: 'smooth' }, data : [{date: '2015-07-15', effort: 400, team: 'Alpha'}, ...] }); ``` [![Horizontal Stacked Bar Chart](examples/screenshots/Taucharts_Stacked-area.png)](https://api.taucharts.com/basic/stacked-area.html) See [stacked area chart documentation](https://api.taucharts.com/basic/stacked-area.html) ___ #### Facet chart ```javascript var chart1 = new Taucharts.Chart({ type : 'scatterplot', x : ['milespergallon'], y : ['class', 'price'], color: 'class', data : [{class: "C", milespergallon: 41.26, price: 24509.74, vehicle: "Prius1"}, ...] }); ``` [![Facet scatterplot chart](examples/screenshots/Taucharts_Facet.png)](https://api.taucharts.com/basic/facet.html) See [facet charts documentation](https://api.taucharts.com/basic/facet.html) ___ #### Data Streaming ```javascript var chart1 = new Taucharts.Chart({ type : 'line', x : 'x', y : 'y', color: 'type', ... }); ``` [![Streaming Data Chart](examples/screenshots/Taucharts_Stream.gif)](//jsfiddle.net/taucharts/qdn76nab/) This sample uses the [setData(..)] method to refresh the chart's data source. See [streaming sample online](//jsfiddle.net/taucharts/qdn76nab/) ___ #### Complex Composable charts [![Composable Chart](examples/screenshots/Taucharts_Composable.png)](https://jsfiddle.net/6LzefLo4/4/) See [composable chart sample online](https://jsfiddle.net/6LzefLo4/4/) ___ ## Migrating from Taucharts v1 to v2 - D3 v4 is now dependency. - `Taucharts` global object name (was `tauCharts`). - `.tau-chart__` CSS class prefix (was`.graphical-report__`). - `export-to` plugin alias changed (was `exportTo`). - Distributive files paths changed. `dist/taucharts.min.js` and `dist/taucharts.min.css` contain the core and all the plugins minified together. `dist/taucharts.js` and `dist/taucharts.css` contain unfinified core, JS and CSS for plugins can be found in `dist/plugins/` folder (e.g. to import a plugin you should do something like `import tooltip from 'taucharts/dist/plugins/tooltip';`). ___ ## How to run the project locally Clone (forked) repository: ``` git clone https://github.com/TargetProcess/taucharts.git ``` Initialize dependencies: ``` npm install ``` Run local webpack dev server (with hot reload): ``` npm start ``` Local server will be started on port 9000 and live taucharts assembly will be exposed by url: ``` http://localhost:9000/dist/taucharts.js ``` Now you can see some taucharts examples: ``` http://localhost:9000/examples/ ``` To run tests (with hot reload): ``` npm run devtest ``` To build a static assembly: ``` npm run build ``` This command creates development and production assemblies in a *[./dist]* folder. See the [Developer Guide](DEVELOPER-GUIDE.md) for more info. ## Taucharts examples / usage reviews [R Wrapper](https://www.buildingwidgets.com/blog/2015/8/5/week-31-taucharts) [SqlPad Project](https://rickbergfalk.github.io/sqlpad/) [Targetprocess Graphical Reports](https://www.targetprocess.com/blog/2015/09/prototype-for-new-custom-graphical-reports-editor/) [Vizydrop project](https://vizydrop.com/) [Taucharts Twitter channel](https://twitter.com/search?q=taucharts) [Taucharts demo page](https://demo.taucharts.com/) [GeoTremor mobile app](https://geotremor.tangentapps.com) [Dex](https://dexvis.net/) [Dex integration video](https://youtu.be/mxD4aQmC4sg) ## License Licensing: [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) Have questions? [Contact us](mailto:michael@targetprocess.com)

近期下载者

相关文件


收藏者