My favorites | Sign in
Project Home Downloads Wiki Issues
Search
for
FeatureRequests  
Feature Requests
Featured
Updated Nov 25, 2009 by boem...@gmail.com

Updated score for features 05. Oct. 09

Add your feature requests by adding a comment to this Wiki Page. I will update a chart with the requests, as well as keep a total score for each request.

  • +1 Possibility to add labels to datapoint: - Done 0.4.0
  • +1 Possibility to draw candle charts: - Done 0.4.0
  • +1 Separate Data Sub-tag jsflot:XYDataList and jsflot:XYDataPoint - 0.5.0
  • +1 Smooth live charts support for Data that are continously changing on server
  • +1 UTF-8 encoded HTML-Page support
  • +1 Modifying border style
  • +1 Logarithmic scale support
  • +1 Support for Norwegian characters ÆØÅ
Comment by yoshi...@gmail.com, Aug 25, 2009

Possibility to add tooltip for pie slices.

Comment by itsme0...@gmail.com, Sep 3, 2009

Separate Data Sub-tag like:

<jsflot:flotChart ..... >

<jsflot:XYDataList id="data1" label="curve_01" color="red">
<jsflot:XYDataPoint x="1" y="1" /> <jsflot:XYDataPoint x="2" y="7" /> <jsflot:XYDataPoint x="3" y="3" />
</jsflot:XYDataList > <jsflot:XYDataList id="data2" label="curve_02" color="blue">
<jsflot:XYDataPoint-List value="#{chartMbean.series2DataList}" />
</jsflot:XYDataList >
</jsflot:flotChart>

Comment by itsme0...@gmail.com, Sep 3, 2009

smooth live charts support for Data are continously changing on server

<a4j:poll id="poll" interval="1000" reRender="valueTimeChart" /> <jsflot:flotChart id="valueTimeChart" value="#{chartMbean.chartSeries}" ... />

this produces flickering due to redraw of whole chart. Nice wold be, if only the changed data is updated.

jsf could look like:

<a4j:poll id="poll" interval="1000" reRender="data1,data2" /> <jsflot:flotChart ... >

<jsflot:XYDataList id="data1" label="curve_01" color="red"> ... </jsflot:XYDataList > <jsflot:XYDataList id="data2" label="curve_02" color="blue">
<jsflot:XYDataPoint-List value="#{chartMbean.series2DataList}" />
</jsflot:XYDataList >
</jsflot:flotChart>

Comment by itsme0...@gmail.com, Sep 3, 2009

UTF-8 encoded HTML-Page support

canvastext.js needs "text/ISO-8859-1" default encoding in ie due to line 109: ... 'é': { diacritic: '´', letter: 'e' },

possible solution: ResouresRenderer?.java at line 137, add writer.writeAttribute("charset", "text/ISO-8859-1", null);

Comment by clement....@gmail.com, Sep 24, 2009

Modifying border style (even no border)

Comment by mikeocon...@gmail.com, Oct 1, 2009

Log scale support (log(Y) value against Y displayed in tick with log spacing) Support for time series display (series of dates) in the X axis

Comment by sigurd.s...@gmail.com, Oct 5, 2009

- Norwegian characters ÆØÅ support in the output (My java class files are UTF-8 encoded) - I would like to remove the black border and the lines within the pie chart, but I cannot see that this is possible as of now

Comment by project member boem...@gmail.com, Oct 5, 2009

Itsme0819: I really like you sub-tag idea. I will definately look into this.

Comment by hel...@gmail.com, Nov 12, 2009

Do you plan to add CategoryDataset? in addition to XYDataset?

Comment by min...@gmail.com, May 6, 2010

Support for incomplete series in line charts. Ex.: You have data from 01/01/2010 till 05/01/2010, except 03/14/2010. In that case you would insert a XYDataPoint (03/13/2010, null) and have a "hole" in the chart between the previous value (03/12/2010) and the next value (03/15/2010).

Comment by principe...@gmail.com, Dec 2, 2010

I like CategoryDataset?.

Comment by flaviocy...@gmail.com, Jan 11, 2011

How about support 3D ploting like Canvas3D JS library ( http://dragan.yourtree.org/code/canvas-3d-graph/ ) or Jyz3D chart API ( http://code.google.com/p/jzy3d/ ) ? It'll be very interesting.

Comment by project member joachim....@gmail.com, Jan 11, 2011

I'm sorry, but I do not have any plans to integrate other third party frameworks than Flotr into JSFlot at the moment,

Comment by d.ferr...@gmail.com, Jan 21, 2011

Possibility to add some line markers on the chart to, for example, separate the four quadrants of the chart.

Comment by d.ferr...@gmail.com, Jan 21, 2011

An alternative for the pre-generated labels that appears in the tooltip. For example, with a bubble chart, the tooltip shows (x: somevalue, y: somevalue, Label: somevalue), with Label being the radius value. Maybe if there was a way to customize these labels or if it came with a more intuitive name, say, the name of the series and the x,y titles (if there is one) would be nicer.

Comment by e2ia...@gmail.com, Jan 23, 2011

I'd like you add possibility to rotate char by degree (ex : 180°)

Comment by e2ia...@gmail.com, Jan 24, 2011

Hi, is it possible to have stackedBar for witch the Xaxis is the left vertical(axis of the Yaxis) one so the bar could grow from left to rigth. regards

Comment by jschar...@gmail.com, Mar 8, 2011

Support to configure bar width for bar graphs to achive clustered bar style as described in http://code.google.com/p/flotr/issues/detail?id=54

Comment by jschar...@gmail.com, May 3, 2011

Note to my comment from Mar, 8th: Maybe this is only a bug. If in FlotChartRenderer?, line 685 the following is added:

	chartTypeOptions.put("barWidth", chartData.getBarWidth());

the desired result will be rendered.

Comment by jschar...@gmail.com, May 3, 2011

Support for configurable tick labeling: add new parameters describing a printf format string for x-axis and y-axis tick labeling, e.g.

   <jsflot:flotChart id="valueTimeChart" chartType="bar"
     xaxisLabelFormat="(%01.1f)"
     yaxisLabelFormat="%01.0f"
   >

Note: If interested, I can provide a patch realizing this feature using a BSD licensed printf implementation.

Comment by IAmD...@gmail.com, May 31, 2011

It would be very useful to be able to change the line width of an individual series. I would like one of the series in a line chart to stand out, so I want to increase the line width on only one series, but it doesn't look like there is any way to do that.

Comment by sushantp...@gmail.com, Jun 9, 2011

possibility of saving chart image on serverside for reporting tools would be helpful.

Comment by sdnak...@gmail.com, Jul 31, 2011

It would be great if the legend could be displayed somewhere other than on the graph itself. (Below, for example.) It can hide some of the bars in a bar chart if there are a lot of items being displayed.

Comment by tec...@gmail.com, Sep 9, 2011

Sería posible que implementaran la funcionalidad de pintar títulos con tildes y ñ?


Sign in to add a comment
Powered by Google Project Hosting