The following codes are OK for TLineChart, but they do not work for TPolarChart.
if OpenDialog1.Execute then
begin
TheChart.BackImageInside := True;
TheChart.BackImage.LoadFromFile(OpenDialog1.FileName);
end;
For TPolarChart , how to fill THE CIRCLE AREA with a picture?
Best Regards
How to fill the circle area with a picture for TPolarChart?
Re: How to fill the circle area with a picture for TPolarChart?
Hello,
I've filed the issue to the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=1417
As you'll see I've also found a workaround for it and I've also fixed it for the next maintenance release.
I've filed the issue to the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=1417
As you'll see I've also found a workaround for it and I've also fixed it for the next maintenance release.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: How to fill the circle area with a picture for TPolarChart?
When assigning a BackImage or Gradient, how to make THE CIRCLE AREA transparent or not?
- Attachments
-
- xxxxx.jpg (330.91 KiB) Viewed 10131 times
Re: How to fill the circle area with a picture for TPolarChart?
Hello,
This seems to work fine for me:
Don't hesitate to let us know if you still find problems with it.
This seems to work fine for me:
Code: Select all
uses TeePolar;
procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
Chart1.View3D:=false;
Chart1.Legend.Visible:=false;
Chart1.Title.Visible:=false;
Chart1.Gradient.StartColor:=RGB(240, 125, 20);
Chart1.Gradient.MidColor:=RGB(150, 10, 240);
Chart1.Gradient.EndColor:=RGB(200, 183, 225);
for i:=0 to 1 do
with Chart1.AddSeries(TPolarSeries) as TPolarSeries do
begin
FillSampleValues;
Pointer.Visible:=false;
Brush.Clear;
Pen.Color:=Color;
Pen.Width:=2;
CircleBrush.Clear;
end;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: How to fill the circle area with a picture for TPolarChart?
“Fill” is to fill Gradient or Picture.
“Inside” is to fill Gradient or Picture in THE CIRCLE AREA, Otherwise to fill THE CHART PANEL.
When “Inside” checked, it does not work as I expected. Would you like to test and correct it for me?
Best regards
“Inside” is to fill Gradient or Picture in THE CIRCLE AREA, Otherwise to fill THE CHART PANEL.
When “Inside” checked, it does not work as I expected. Would you like to test and correct it for me?
Best regards
- Attachments
-
- Example.zip
- (58.84 KiB) Downloaded 559 times
Re: How to fill the circle area with a picture for TPolarChart?
Hello,
I'm sorry, the workaround wasn't correct. The good one is to clear CircleBrush. Ie, in your test application:sripe wrote:When “Inside” checked, it does not work as I expected. Would you like to test and correct it for me?
Code: Select all
procedure TForm1.BitBtn2Click(Sender: TObject);
begin
if OpenDialog1.Execute then
begin
Chart1.BackImageInside := CheckBox8.Checked;
(ChartListBox1.SelectedSeries as TPolarSeries).CircleBrush.Clear;
Chart1.BackImage.LoadFromFile(OpenDialog1.FileName);
end;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: How to fill the circle area with a picture for TPolarChart?
Yes, it works to load a Picture. But, how to change the Gradient of THE CIRCLE AREA? Thanks.
Re: How to fill the circle area with a picture for TPolarChart?
Hello,
In your FormCreate, after clearing the CircleBrush, try assigning it a bsSolid TBrushStyle:
In your FormCreate, after clearing the CircleBrush, try assigning it a bsSolid TBrushStyle:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
//...
CircleBrush.Clear;
CircleBrush.Style:=bsSolid;
//...
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |