 Rank: Newbie
Groups: Registered
Joined: 2/25/2013(UTC) Posts: 4
|
Hi, I want to add adition Y-Axis (Humidity in image) to same area and also want to change legends' orientation like in image below.  Thanks in advance
|
|
|
|
 Rank: Member
Groups: Registered
Joined: 7/28/2009(UTC) Posts: 447 
|
Hi, Please, check next code: Code:ChartArea chartArea = chartView.getAreas().get(0);
ChartSeries chartSeries = chartView.getSeries().get("Humidity");
ChartAxis humidityAxis = new ChartAxis(ChartAxis.Position.Left);
humidityAxis .setTitle("Humidity");
chartArea.getAxes().add(humidityAxis);
chartSeries.setYAxis(humidityAxis);
Best regards, |
Volodymyr Baydalka Andriod development and support team |
|
|
|
 Rank: Newbie
Groups: Registered
Joined: 2/25/2013(UTC) Posts: 4
|
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.