TauCharts: Data-focused JavaScript charting library
31–40 of 41 posts
Re: TauCharts: Data-focused JavaScript charting library
#32So, if I get this right, being 'data-friendly' sums up to using data in the form [ {val1: 1, val2: 2}, {val1: 2, val2: 3}] and then mapping x: 'val1', y: 'val2' instead of something like {x: [1,2], y: [2,3]}. The former assumes that the input data comes in a csv or a similar format. This makes charting computed data (à la MATLAB or numpy/matplotlib) rather awkward.
Re: TauCharts: Data-focused JavaScript charting library
#33What's most astonishing about all this is that the AMC Rebel gets 0mpg!
Re: TauCharts: Data-focused JavaScript charting library
#34What I want with such charting solutions is something to export or copy and paste data from excel and put it into a chart. Just that. No need to manually edit a javascript file or html code beyond customising the appearance once the data is in there. Is this available somewhere?
That said, it would be cool if there was some kind of composer interface that would allow you to point-at/paste/import data, then save the visualization as a single page HTML snippet - like a small Tiddlywiki for data.
- https://github.com/mbostock/d3/wiki/CSV - http://tiddlywiki.com/
Re: TauCharts: Data-focused JavaScript charting library
#35That said, the content and goals for the project really are quite cool! I'm looking forward to where TauCharts can go in the future.
Re: TauCharts: Data-focused JavaScript charting library
#36This is a rather minor nitpick, but I think the documentation and TauCharts website as a whole could use some editing by a native English speaker. That said, the content and goals for the project really are quite cool! I'm looking forward to where TauCharts can go in the future.
Re: TauCharts: Data-focused JavaScript charting library
#37Re: TauCharts: Data-focused JavaScript charting library
#38This is a rather minor nitpick, but I think the documentation and TauCharts website as a whole could use some editing by a native English speaker. That said, the content and goals for the project really are quite cool! I'm looking forward to where TauCharts can go in the future.
If your goal is to express ideas and get someone to contribute/download/convert, I don't think that's a minor nitpick at all. It was pretty painful to read certain parts.
Re: TauCharts: Data-focused JavaScript charting library
#39At the http://taucharts.com it says "Free open source D3.js-based library" but in the tutorial at http://api.taucharts.com/tutorials/5min.html it says "free for non-commercial use". At GitHub it is sporting Apache License, Version 2.0 which - if I am not mistaken - allows commercial use. Could you please clear that up for me? Am I allowed to use it in commercial products (like a website made for one of my clients) or…
It is free for commercial use, the site will be fixed, it is a mistake in the 5min page.
Re: TauCharts: Data-focused JavaScript charting library
#40I wonder how this compares to VarianceCharts - https://variancecharts.com/ (besides the license). They both claim to get inspiration from the grammar of graphics.