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 2495

Summary: Changing Marks angle individually does nothing
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: enhancement CC: yeray
Priority: ---    
Version: 33.210915   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2021-12-21 09:53:12 EST
Changing Series Marks Angle sets the new angle for all the marks in that series, which is correct. Ie:

  with Chart1.AddSeries(TBarSeries) do
  begin
    FillSampleValues;
    Marks.Angle:=45;
  end;

But changing the Angle for a single Mark doesn't work. Ie:

  with Chart1.AddSeries(TBarSeries) do
  begin
    FillSampleValues;
    Marks[2].Angle:=45;
  end;