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 1417

Summary: Assigning a BackImage in BackImageInside mode when having TPolarSeries doesn't draw the image
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: 131119   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=3&t=15942
Chart Series: Polar Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2016-01-27 09:00:14 EST
This doesn't draw any image:

  Chart1.AddSeries(TPolarSeries).FillSampleValues;
  Chart1.View3D:=false;

  Chart1.BackImageInside:=true;
  Chart1.BackImage.LoadFromFile(filename);

Workaround:

(Chart1[0] as TPolarSeries).CircleBrush.Image.LoadFromFile(filename);
Comment 1 yeray alonso 2016-01-29 06:59:51 EST
The workaround above was wrong. This is the good one:

  (Chart1[0] as TPolarSeries).CircleBrush.Clear;