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 227 - [TV52016419] The patterns based on images seem to work for the TLineSeries, but fo...
Summary: [TV52016419] The patterns based on images seem to work for the TLineSeries, b...
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-11-16 16:29 EST by yeray alonso
Modified: 2013-11-20 10:33 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 2013-11-20 10:33:24 EST
The patterns based on images seem to work for the TLineSeries, but for the TPointSeries nor for the TGanttSeries.
procedure TForm1.FormCreate(Sender: TObject);
var ABitmap : TBitmap;
begin
  ABitmap := TBitmap.Create;
  GetTeeBrush(3,ABitmap);
  //TLineSeries
  with Chart1.AddSeries(TLineSeries) as TLineSeries do
  begin
    Brush.Image.Assign(ABitmap);
    FillSampleValues(10);
  end;{}
  //TGanttSeries
  {with Chart1.AddSeries(TGanttSeries) as TGanttSeries do
  begin
    Pointer.VertSize:=10;
    Pointer.Brush.Image.Assign(ABitmap);
    FillSampleValues(10);
  end;{}
  //TPointSeries
  {with Chart1.AddSeries(TPointSeries) as TPointSeries do
  begin
    Pointer.Brush.Image.Assign(ABitmap);
    FillSampleValues(10);
  end;{}
end;
http://www.teechart.net/support/viewtopic.php?f=3&t=13683&p=59967#p59967 [created:2012-11-16T16:29:26.000+01:00 reported by:yeray@steema.com reported in version:2012.07.121105 (TeeChart VCL)]