githubbub / achartengine

Automatically exported from code.google.com/p/achartengine
0 stars 0 forks source link

Combining TimeChart and CubeLineChart #283

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I'm using a TimeChartView in order to display DateTime values on x-axis.
I would like to display the line in a cubic manner (like CubeLineChartView).
Is there a way to combine both types?

Original issue reported on code.google.com by spam8...@gmail.com on 5 Mar 2013 at 7:32

GoogleCodeExporter commented 9 years ago
A common way would be to use a CubeLineChartView with a listener for label 
creation.
something like:

renderer.addLabelListener( new LabelListener()
{
  // override
  public void onMeasureItem( value )
  ...

  public void onCreateLabel( value )
  ...
} 
);

such a listener is missing, isn't it???

Original comment by spam8...@gmail.com on 10 Mar 2013 at 7:01

GoogleCodeExporter commented 9 years ago

Original comment by dandrome...@gmail.com on 23 Mar 2013 at 2:19

GoogleCodeExporter commented 9 years ago
I am also interested in having a TimeChart view with lines in a cubic manner.

Original comment by jesper.d...@gmail.com on 10 Feb 2014 at 6:52