I have a web application written with JavaServer Faces technology.

The application takes n inputs and provides an output.

I want the following functionality in my application.

I want to have sliders for each of my inputs.

I want the output to be depicted by a graph.

So whenever I change the input values via a slider I want the changed output value also displayed in the graph

So what will be the best way to do this?

link|improve this question

59% accept rate
Model View Controller? – piggles Dec 29 '09 at 6:12
yeah model view controller – Anand Dec 29 '09 at 6:41
feedback

3 Answers

May be you could use the Google Chart API.

link|improve this answer
will give it a shot and get back to you – Anand Dec 29 '09 at 6:42
okay maybe I can use the google api for the graphs.... but what about the sliders how do i code that ?? – Anand Dec 29 '09 at 7:25
feedback

You need two components. One is the slider component which comes with pretty much every component library. Second one is the chart component I believe comes with the PrimeFaces component library. All JavaServer Faces component libraries support Ajax so you could give it a shot.

link|improve this answer
thanks for your suggestion but I am already using the Trinidad and Tobago faces component which does not have a slider. So is there any work around in this case ?? – Anand Dec 29 '09 at 8:45
RichFaces and PrimeFaces both have slider components consider using them. – Murat Can ALPAY Dec 29 '09 at 9:52
But I am not using either of them but infact am using Trinidad and Tobago – Anand Dec 30 '09 at 3:35
feedback

In one of my projects we had a similar request.

As we where using richfaces we used those components but for the graph drawing we used jGraph, a small 'open source' library.

We chose jGraph as it was the only (not too expensive) library we found that allowed us to layout automatically a graph. (automatic layout is part of a licensed version, not free)

We used the richfaces mediaoutput component to call our backingbean which used jGraph to render a jpg of our graph.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.