As somebody who has worked a lot with many javascript charting libraries over the years, one important lesson we have learned is to "never roll your own charting library" and accept the feature set of the library. Too much customization will lead you down a windy path that can lead to nowhere. Pick your library first and keep that library's limitations in mind during the design process to save yourself a world of hur…
Chartist – Simple responsive charts
31–40 of 51 posts
Re: Chartist – Simple responsive charts
#32This website is using SVG graphics, very nicely. Is there a tool (GUI) that does that? Is it an export from a program like Illustrator, or is there something easier --and cheaper-- to do this?
XaraXtreme - http://www.xaraxtreme.org/ InkScape - http://www.inkscape.org/en/ Karbon - https://userbase.kde.org/Karbon
Re: Chartist – Simple responsive charts
#33As somebody who has worked a lot with many javascript charting libraries over the years, one important lesson we have learned is to "never roll your own charting library" and accept the feature set of the library. Too much customization will lead you down a windy path that can lead to nowhere. Pick your library first and keep that library's limitations in mind during the design process to save yourself a world of hur…
Sounds like a nice business opportunity: a chart library that is as easy to use as it is to customize.
Re: Chartist – Simple responsive charts
#34I rarely have a need to display static charts. My common use when I reach for a chart is to display live streaming data. Usually doing so involves accessing a points list directly and managing the addition/deletion/updating myself. Is there any chart system that is made with live updating in mind?
And it's built on top of d3, so the possibilities for customization are almost limitless (as another commenter has said).
Re: Chartist – Simple responsive charts
#35I rarely have a need to display static charts. My common use when I reach for a chart is to display live streaming data. Usually doing so involves accessing a points list directly and managing the addition/deletion/updating myself. Is there any chart system that is made with live updating in mind?
Re: Chartist – Simple responsive charts
#36Re: Chartist – Simple responsive charts
#37Earlier quoted context omitted.
When I think responsive it's in a mobile first paradigm. There is no hover on mobile.
There is no hover on mobile, but in this context, touch/press works as an analog for hover. In other words, you want more information/detail on a particular data point, on desktop you hover, on mobile you press.
Re: Chartist – Simple responsive charts
#38Earlier quoted context omitted.
When I think responsive it's in a mobile first paradigm. There is no hover on mobile.
True, but "mobile first" is not "mobile only". The point of responsive design is for things to work well on multiple platforms, not just one.
Re: Chartist – Simple responsive charts
#39Given that this doesn't work on Android 2.* stock browser (and I assume IE8), it would be good to see some kind of fallback - preferably canvas and if that's not supported then a table of the raw data, which would be better than the current blank space.
Re: Chartist – Simple responsive charts
#40Given that this doesn't work on Android 2.* stock browser (and I assume IE8), it would be good to see some kind of fallback - preferably canvas and if that's not supported then a table of the raw data, which would be better than the current blank space.
I bet that not supporting those are intended. I don't get why there is always this need to support old tech. Can't we not just move forward?