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

Summary: Transparent Legend uses wrong pen in symbols
Product: Java TeeChart Reporter: yeray alonso <yeray>
Component: LegendAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: https://www.steema.com/support/viewtopic.php?f=10&t=17105
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

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.