All Projects → globeandmail → Chart Tool

globeandmail / Chart Tool

Licence: mit
A responsive charting application

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Chart Tool

C3
📊 A D3-based reusable chart library
Stars: ✭ 9,163 (+3655.33%)
Mutual labels:  graphics, chart, d3
D3.chart.sankey
Reusable D3 Sankey diagram using d3.Chart
Stars: ✭ 103 (-57.79%)
Mutual labels:  chart, d3
React Charts
⚛️ Simple, immersive & interactive charts for React
Stars: ✭ 1,302 (+433.61%)
Mutual labels:  chart, d3
React D3 Components
D3 Components for React
Stars: ✭ 1,599 (+555.33%)
Mutual labels:  chart, d3
Ember C3
📈 Ember addon library for C3, a D3-based reusable chart library.
Stars: ✭ 81 (-66.8%)
Mutual labels:  chart, d3
Diffract
A set of d3 based visualization components built for React
Stars: ✭ 87 (-64.34%)
Mutual labels:  chart, d3
Markvis
make visualization in markdown. 📊📈
Stars: ✭ 1,509 (+518.44%)
Mutual labels:  chart, d3
D3 Spotmatrix
Open Source Javascript Library to render Spot Matrix Charts using D3.js
Stars: ✭ 12 (-95.08%)
Mutual labels:  chart, d3
Wechart
Create all the [ch]arts by cax or three.js - Cax 和 three.js 创造一切图[表]
Stars: ✭ 152 (-37.7%)
Mutual labels:  graphics, chart
Sunburstr
R htmlwidget for interactive sunburst plots
Stars: ✭ 177 (-27.46%)
Mutual labels:  chart, d3
Visx
🐯 visx | visualization components
Stars: ✭ 14,544 (+5860.66%)
Mutual labels:  chart, d3
Ac D3
Javascript Library for building Audiovisual Charts in D3
Stars: ✭ 76 (-68.85%)
Mutual labels:  chart, d3
D3.js Network Topology
网络拓扑图
Stars: ✭ 60 (-75.41%)
Mutual labels:  chart, d3
Unity Ugui Xcharts
A charting and data visualization library for Unity. 一款基于UGUI的数据可视化图表插件。
Stars: ✭ 1,086 (+345.08%)
Mutual labels:  graphics, chart
Reaviz
📊 Data visualization library for React based on D3
Stars: ✭ 215 (-11.89%)
Mutual labels:  chart, d3
Just Dashboard
📊 📋 Dashboards using YAML or JSON files
Stars: ✭ 1,511 (+519.26%)
Mutual labels:  chart, d3
Hsstockchart
Stock Chart include CandleStickChart,TimeLineChart. 股票走势图,包括 K 线图,分时图,手势缩放,拖动
Stars: ✭ 602 (+146.72%)
Mutual labels:  graphics, chart
D3fc
A collection of components that make it easy to build interactive charts with D3
Stars: ✭ 898 (+268.03%)
Mutual labels:  chart, d3
Aachartkit Swift
📈📊📱💻🖥️An elegant modern declarative data visualization chart framework for iOS, iPadOS and macOS. Extremely powerful, supports line, spline, area, areaspline, column, bar, pie, scatter, angular gauges, arearange, areasplinerange, columnrange, bubble, box plot, error bars, funnel, waterfall and polar chart types. 极其精美而又强大的跨平台数据可视化图表框架,支持柱状图、条形图、…
Stars: ✭ 1,962 (+704.1%)
Mutual labels:  graphics, chart
V Chart Plugin
Easily bind a chart to the data stored in your Vue.js components.
Stars: ✭ 188 (-22.95%)
Mutual labels:  chart, d3

Chart Tool

Chart Tool is a platform for creating, storing and displaying beautiful, responsive embeddable charts. Designed to fit the needs of a fast-paced mobile and print newsroom, Chart Tool generates charts in several formats:

  • SVGs that are both responsive and interactive, via an embed code
  • JPGs and PNGs for use as thumbnails and sharing on social media
  • PDFs that can be almost immediately dropped into a print content management system

Chart Tool interface GIF


Contents


How it works

Chart Tool is made up of two parts:

A back end interface for storing data, creating and exporting charts, and generating a static embed code, powered by Meteor and React. Embed codes are static by design — if your back end goes down, all the charts on your site will still display properly. Try out a demo of the charts interface.

A front-end JavaScript and CSS library that parses embed codes generated by the back end and renders a responsive chart on your website using parts of D3.js. The front-end library also offers an API that can be accessed to modify charts before or after they've been drawn. Check out some example charts on our website.

Features

  • Searchable database: All charts are stored in a searchable, taggable database for easy retrieval
  • Simple, straightforward GUI: Easy-to-use (and easy-to-teach!) collaborative interface for editing charts, so multiple people can work on the same chart at once
  • Asset generation: Easily generate PNGs at any size for use on social media, or PDFs for print use
  • Fallback images: All charts come with a fallback image in case the library is unable to draw the chart. Fallbacks can be stored on AWS, or bundled as inline Base64 images
  • Fully responsive: Charts will redraw automatically on window resize
  • Lots of chart types:
    • Line charts
    • Area charts
    • Stacked area charts
    • Column charts
    • Stacked column charts
    • Bar charts
    • Stacked bar charts
    • Multiline charts
    • Scatterplots
    • No pies (sorry)
  • Annotations: All charts can be annotated with text annotations, pointer arrows, highlighting a range along the x- or y-axis, or highlighting a bar or column.
  • Highly configurable: Don't want tips to appear for a specific chart, or want to manually set the number of ticks to be displayed? No problem!
  • "Ordinal-time" scales: Treat time series data as if it were ordinal — this is very useful for visualizing stock price charts, or when you want to skip weekends and holidays
  • Pre- and post-render hooks: All charts come with several basic custom events via D3's dispatch library, including pre- and post-render hooks for every chart
  • Zero external dependencies: The Chart Tool library comes bundled with everything it'll need right out of the box
  • Lightweight libraries: The front-end CSS and JS libraries clock in at a combined 45.536kB minified and gzipped

Examples and demo

Examples of the types of charts Chart Tool can generate can be found here.

For a demo of the back end interface used to generate charts, images and PDFs, check out our demo app.

Getting started

Curious to try out Chart Tool, but don't want to go through the process of setting it up? Try out our hosted demo version.

First, you'll need Node.js 8.11 installed. We recommend using nvm to keep your Node version in sync with what Chart Tool expects. This is important: anything lower and Meteor will fail in spectacular and unexpected ways.

Next, you'll need to install Meteor.

You'll also need Gulp.

$ npm install -g gulp

Then, clone the Chart Tool repo and install your NPM dependencies for both the root project and the backend, which will make sure Gulp is set up and can run your project:

$ git clone [git-repo-url] && cd chart-tool
$ npm install

After that, you'll need to do cd meteor && meteor to get Meteor running for the first time, which provisions the Mongo database and installs all the dependencies it'll need (this might take a minute). Once that's done, you're in business. Stop the Meteor server (CTRL-C on a Mac) and cd back to the parent directory.

Then, all you need to do is:

$ gulp

That's it! You're running your own development copy of Chart Tool! 🎉 🎉 🎉

Tutorials

Now that you've got Chart Tool up and running, here are some tips on how to get rolling.

For starters, you might want to read up on how to make your first chart. A full tutorial, including how to embed it on the web or generate a static image at multiple sizes is available here.

Otherwise, these are some other tutorials you might want to check out:

Version

1.4.2

License

Chart Tool © 2017 The Globe and Mail. It is free software, and may be redistributed under the terms specified in our MIT license.

Get in touch

If you've got any questions, feel free to send us an email, or give us a shout on Twitter:

Tom Cardoso Jeremy Agius Michael Pereira Matt Frehner
Tom Cardoso
@tom_cardoso
Jeremy Agius
@j_agius
Michael Pereira
@monkeycycle_org
Matt Frehner
@mattfrehner
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].