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 2389 - Missing values in DataTable tool at Left axis
Summary: Missing values in DataTable tool at Left axis
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Tools (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: yeray alonso
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2020-12-04 04:17 EST by yeray alonso
Modified: 2020-12-04 05:51 EST (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 2020-12-04 04:17:16 EST
The DataTable Tool calculates the number of items to be drawn considering the labels width. But this doesn't work well when using an Horiz series like THorizBarSies.

Simple example below:

var DataTable: TDataTableTool;

  Chart1.AddSeries(THorizBarSeries).FillSampleValues(20);

  DataTable:=TDataTableTool.Create(Self);
  DataTable.ParentChart:=Chart1;