Plottable.js – Flexible, interactive charts for the web
plottablejs.org
Plottable.js – Flexible, interactive charts for the web
1–10 of 90 posts
Re: Plottable.js – Flexible, interactive charts for the web
#2However, being afraid that I'm not aware of some other, maybe more powerful, libraries out there, I'm asking here are there good alternatives?
Also, there were some rumors lately regarding the layoffs in Palantir, which makes me worry about the future of the project.
Re: Plottable.js – Flexible, interactive charts for the web
#3This is definitely the best charting library I've worked with so far, mostly because of its flexibility. However, being afraid that I'm not aware of some other, maybe more powerful, libraries out there, I'm asking here are there good alternatives? Also, there were some rumors lately regarding the layoffs in Palantir, which makes me worry about the future of the project.
I personally love: http://metricsgraphicsjs.org/ and http://www.chartjs.org/
BTW I created the list, comments are appreciated
Re: Plottable.js – Flexible, interactive charts for the web
#4Re: Plottable.js – Flexible, interactive charts for the web
#5This is definitely the best charting library I've worked with so far, mostly because of its flexibility. However, being afraid that I'm not aware of some other, maybe more powerful, libraries out there, I'm asking here are there good alternatives? Also, there were some rumors lately regarding the layoffs in Palantir, which makes me worry about the future of the project.
Re: Plottable.js – Flexible, interactive charts for the web
#6It has been over a decade since I did any legitimate work in JavaScript. If I wanted to use this to make some pretty data displays, do I really need to install an ecosystem (npm, node, grunt, bower, more?) instead of just pointing a script tag to something.js?
Re: Plottable.js – Flexible, interactive charts for the web
#7 public connectorsEnabled(enabled: boolean): this;
public connectorsEnabled(enabled?: boolean): any {
if (enabled == null) {
return this._connectorsEnabled;
}
this._connectorsEnabled = enabled;
return this;
}
https://github.com/palantir/plottable/blob/develop/src/plots...Re: Plottable.js – Flexible, interactive charts for the web
#8It has been over a decade since I did any legitimate work in JavaScript. If I wanted to use this to make some pretty data displays, do I really need to install an ecosystem (npm, node, grunt, bower, more?) instead of just pointing a script tag to something.js?
Re: Plottable.js – Flexible, interactive charts for the web
#9This is definitely the best charting library I've worked with so far, mostly because of its flexibility. However, being afraid that I'm not aware of some other, maybe more powerful, libraries out there, I'm asking here are there good alternatives? Also, there were some rumors lately regarding the layoffs in Palantir, which makes me worry about the future of the project.
Re: Plottable.js – Flexible, interactive charts for the web
#10Can someone enlighten me on why they're doing two declarations, one empty returning `this` and the other, implemented, returning `any`? public connectorsEnabled(enabled: boolean): this; public connectorsEnabled(enabled?: boolean): any { if (enabled == null) { return this._connectorsEnabled; } this._connectorsEnabled = enabled; return this; } https://github.com/palantir/plottable/blob/develop/src/plots...