yuxinburen / achartengine

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

Transparent background bar chart panning issue #403

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Set transparent background with margin color transparent in bar chart
2. Set pannable only Y axis
3. Scroll down
4. See result

What is the expected output? What do you see instead?
I want to block the bar chart not to draw when touches X axis while panning 
vertically

Please provide a source code snippet that we can use to replicate the
issue.

XYMultipleSeriesRenderer renderer = buildBarRenderer(colors1);
setChartSettings(renderer, "", "", "", 0, 10, 0, 2652, Color.BLACK, 
Color.BLACK);
renderer.setApplyBackgroundColor(true);
renderer.setBackgroundColor(getResources().getColor(R.colortransparent));
renderer.setMarginsColor(getResources().getColor(R.color.transparent));
renderer.setAxisTitleTextSize(14);
renderer.setShowLegend(false);
renderer.setLabelsTextSize(10);
renderer.setLegendTextSize(10);
renderer.setXLabelsColor(Color.BLACK);
renderer.setYLabelsColor(0, Color.BLACK);
renderer.setYLabelsAlign(Paint.Align.RIGHT);
renderer.setYLabelsPadding(10);
renderer.setShowGridX(false);
renderer.setGridColor(Color.BLACK);
renderer.setXLabels(0);
renderer.setYLabels(15);
renderer.setClickEnabled(true);
renderer.setMargins(new int[]{100, 100, 50, 0});
renderer.setBarWidth(10);
renderer.setZoomRate(1.1f);
renderer.setPanEnabled(false, true);
renderer.setPanLimits(new double[]{0, 0, -1, 2652 + (2652 / 4)});
renderer.setZoomEnabled(false, true);
renderer.setFitLegend(true);
renderer.setBarSpacing(0.3f);
renderer.setInScroll(true);
renderer.setZoomButtonsVisible(false);
renderer.setExternalZoomEnabled(true);
renderer.setZoomRate(2);

What version of the product binary library are you using?
achartengine-1.1.0.jar

Please provide any additional information below.
see attachment from screen.

Original issue reported on code.google.com by mistryda...@gmail.com on 7 Apr 2014 at 5:16

Attachments:

GoogleCodeExporter commented 9 years ago
We are also facing the same issue. Got any solutions or work around for this ?

Original comment by Jovish.e...@gmail.com on 10 Jun 2014 at 4:56

GoogleCodeExporter commented 9 years ago
Don't use transparent background.

Original comment by dandrome...@gmail.com on 16 Sep 2014 at 7:29