Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2141 - Transparent Legend uses wrong pen in symbols
Summary: Transparent Legend uses wrong pen in symbols
Status: RESOLVED FIXED
Alias: None
Product: Java TeeChart
Classification: Unclassified
Component: Legend (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: https://www.steema.com/support/viewto...
Keywords:
Depends on:
Blocks:
 
Reported: 2019-01-16 08:37 EST by yeray alonso
Modified: 2019-01-17 04:07 EST (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2019-01-16 08:37:08 EST
Tested in Swing:

		tChart1.getAspect().setView3D(false);
		tChart1.getLegend().setTransparent(true);
		tChart1.getLegend().getPen().setVisible(false);
		tChart1.getLegend().setCustomPosition(true);
		tChart1.getLegend().setLeft(20);
		tChart1.getLegend().setTop(100);
		tChart1.getPanel().setMarginLeft(20);
		tChart1.getPanel().setColor(Color.white);
		
		//new Area(tChart1.getChart());
		new Bar(tChart1.getChart());
		Line line = new Line(tChart1.getChart());
		line.fillSampleValues();

Seems to work fine if you disable the Transparency or the CustomPosition.
It also seems to work fine if you add an Area series before the Bar.