Foros de discusión

RE: how to make gauge or speedometer chart portlet

natanael berlian, modificado hace 10 años.

how to make gauge or speedometer chart portlet

New Member Mensajes: 14 Fecha de incorporación: 25/03/13 Mensajes recientes
hi all,
I've project to make speedometer chart. Is that anyone has been make it?

I've try to make with jfreechart to make bar chart or just pie chart. I don't know how to make sppedometer chart with jfreechart.

thanks
thumbnail
Victor Zorin, modificado hace 10 años.

RE: how to make gauge or speedometer chart portlet

Liferay Legend Mensajes: 1228 Fecha de incorporación: 14/04/08 Mensajes recientes
You can have a look at this demo of Meter Chart Portlet.
Unfortunately we do not offer these portlets for free downloading yet, did not have enough time to put all licensing in place and they are only supplied with custom projects. All these BI Charts are using jfreechart library...
natanael berlian, modificado hace 10 años.

RE: how to make gauge or speedometer chart portlet

New Member Mensajes: 14 Fecha de incorporación: 25/03/13 Mensajes recientes
Victor Zorin:
You can have a look at this demo of Meter Chart Portlet.
Unfortunately we do not offer these portlets for free downloading yet, did not have enough time to put all licensing in place and they are only supplied with custom projects. All these BI Charts are using jfreechart library...



thanks but I want to make it project. Does anyone want to help me?
thumbnail
James Falkner, modificado hace 10 años.

RE: how to make gauge or speedometer chart portlet

Liferay Legend Mensajes: 1399 Fecha de incorporación: 17/09/10 Mensajes recientes
natanael berlian:
Victor Zorin:
You can have a look at this demo of Meter Chart Portlet.
Unfortunately we do not offer these portlets for free downloading yet, did not have enough time to put all licensing in place and they are only supplied with custom projects. All these BI Charts are using jfreechart library...



thanks but I want to make it project. Does anyone want to help me?



How about Google Charts? There's a pretty simple Gauge example which uses javascript. What did you want to measure with the Gauge?
thumbnail
David H Nebinger, modificado hace 10 años.

RE: how to make gauge or speedometer chart portlet

Liferay Legend Mensajes: 14914 Fecha de incorporación: 2/09/06 Mensajes recientes
Highcharts has some guages...
Mohamed Faisal, modificado hace 8 años.

RE: how to make gauge or speedometer chart portlet

Junior Member Mensajes: 90 Fecha de incorporación: 12/08/09 Mensajes recientes
David H Nebinger:
Highcharts has some guages...


I have a json response like
{"error":"false","data":{"title":"speedometer","units":"points","values":[{"label":"Label1","value":"20"},{"label":"Label2","value":"80"},{"label":"Label3","value":"60"}]}}

I need to implement speedometer using highchart. Please let me know how to implement.

Regards,
Faisal
thumbnail
Jan Geißler, modificado hace 8 años.

RE: how to make gauge or speedometer chart portlet

Liferay Master Mensajes: 735 Fecha de incorporación: 5/07/11 Mensajes recientes
You implement it in the following way:
Look at the data you have got.
Look at the manual/API of highchart.
Look at the demo.
Play around with the demo (there is a jfiddle button) to get an idea how it works.
http://www.highcharts.com/demo/gauge-speedometer

I will not give you any code, as there are tons of examples, and there will be no learning if you just copy paste code.
Mohamed Faisal, modificado hace 8 años.

RE: how to make gauge or speedometer chart portlet

Junior Member Mensajes: 90 Fecha de incorporación: 12/08/09 Mensajes recientes
Hi Jan Geißler,

Thank you for reply.
I have done pie and bar chart with dynamic data. But I am not able to do speedometer with json response.
could you please elaborate how to achieve this.

Regards,
Faisal
thumbnail
Jan Geißler, modificado hace 8 años.

RE: how to make gauge or speedometer chart portlet

Liferay Master Mensajes: 735 Fecha de incorporación: 5/07/11 Mensajes recientes
Looks like your JSON response does not have the right format for the speedometer, so you would have to transform it to a format, the Speedometer can actually use.
Mohamed Faisal, modificado hace 8 años.

RE: how to make gauge or speedometer chart portlet

Junior Member Mensajes: 90 Fecha de incorporación: 12/08/09 Mensajes recientes
Thanks, will check this.