key cropped
Closed this issue · 1 comments
GoogleCodeExporter commented
I have several charts on my display at one time. They are each added to a
separate LinearLayout, the first two weighted (equally), the 3rd is set to a
fixed size of 100dip:
<linearlayout android:orientation="vertical">
<linearlayout id="chart1" android:layout_weight="1" />
<linearlayout id="chart2" android:layout_weight="1" />
<linearlayout id="chart3" android:layout_height="100dp" />
</linearlayout>
i programmatically add the View to each of the linearLayout elements.
What is the expected output? What do you see instead?
I expect to be able to see the full chart, including the key & all axis text.
for the 3rd chart, and the first two (if they have > 1 line of key text), the
bottom of the chart is cropped.
Please provide a source code snippet that we can use to replicate the issue.
What version of the product binary library are you using?
tested both on v0.5 and repository revision r56
Please provide any additional information below.
in the attached screenshot, the second chart (one with green line) should have
three rows in its key/legend, but it is only showing one.
the last chart ('computer inaccuracy') is missing the key/legend altogether.
Original issue reported on code.google.com by trevor.s...@gmail.com
on 11 Oct 2010 at 1:03
Attachments:
GoogleCodeExporter commented
Fixed in svn rev. r81.
Added support for setting the legend height. This way, you can now set the
legend to be of a bigger height programmatically and you can avoid missing
stuff.
Original comment by dandrome...@gmail.com
on 17 Nov 2010 at 8:42
- Changed state: Fixed