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 - Assigning a BackImage in BackImageInside mode when having TPolarSeries doesn't draw the image
Summary: Assigning a BackImage in BackImageInside mode when having TPolarSeries doesn'...
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: 131119
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2016-01-27 09:00 EST by yeray alonso
Modified: 2016-01-29 06:59 EST (History)
0 users

See Also:
Chart Series: Polar
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 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;