Jump to content

Marc Meumann

Members
  • Content Count

    3
  • Joined

  • Last visited

Everything posted by Marc Meumann

  1. Marc Meumann

    TChart in Delphi 10.0 vs Delphi 12.2

    " included in RAD studio 13 at earliest?" Hopefully we'll get there long before that, it shouldn't be too complicated to resolve.
  2. Marc Meumann

    TChart in Delphi 10.0 vs Delphi 12.2

    The example code is useful. It looks, at first glance, like a a bug ...to be investigated. Temporary workaround could be to directly control the Axis Items list after adding the data: Chart2.Axes.Left.Items.Clear; Chart2.Axes.Left.Items.Add(9,seriesC); Chart2.Axes.Left.Items.Add(5,seriesA); Chart2.Axes.Left.Items.Add(8,seriesB);
  3. Marc Meumann

    TChart in Delphi 10.0 vs Delphi 12.2

    It may be a pixel rounding issue, some variation between versions, thus hiding the Label as it isn't deemed to have enough space. Test of concept would be to run: Chart1.Axes.Left.LabelsSeparation := 0;
×