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 2458 - Axes only drawn when first Ternary is visible
Summary: Axes only drawn when first Ternary is visible
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: 32.210430
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: yeray alonso
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-08-06 03:00 EDT by yeray alonso
Modified: 2021-08-06 03:30 EDT (History)
1 user (show)

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 2021-08-06 03:00:36 EDT
If you have multiple Ternary series in a Chart and you hide the first one, the axes disappear:

uses TeeTernary;

procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
  Chart1.Walls.Back.Hide;
  Chart1.Gradient.Visible:=False;
  Chart1.Color:=clWhite;

  for i:=0 to 3 do
    with TTernarySeries(Chart1.AddSeries(TTernarySeries)) do
    begin
      FillSampleValues;
      ColorEachPoint:=False;
      UseColorRange:=False;
      UsePalette:=False;
    end;

  Chart1[0].Visible:=False;
end;
end;