Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Editable javascript chart - interactively resize bars or pie sections

I need a library or a framework plugin that can draw charts that can be modified real-time by resizing part of the chart itself. Is there such thing?

I plan to use it for adjusting the chart values. Mostly for controlling amount allocation.

For example. You have 4 hours and you have 5 distinct types of tasks. I want the user to be able to allocate time for each task and see visually what's the impact on the available time.

like image 545
antitoxic Avatar asked Oct 03 '11 22:10

antitoxic


People also ask

How do you create a chart in JavaScript?

You can create responsive charts with JSCharting through a couple simple steps: Define a <div> tag in the HTML file with a unique id. Provide this id, data, and any other options when calling JSC. Chart() in the JavaScript file.


2 Answers

I think Visually Editable Charts of Fusion Charts is what you are looking for.

like image 108
Mikołaj Pastuszko Avatar answered Nov 15 '22 18:11

Mikołaj Pastuszko


We use various charts from http://code.google.com/apis/chart/ for our web app, and it works great.

The chart are loaded once, and refreshed, each time the user change a value, with new data through their Javascript API in real-time.

like image 23
Mic Avatar answered Nov 15 '22 20:11

Mic