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 2590 - AxisLabelStyle.PointValue not drawing all XValues
Summary: AxisLabelStyle.PointValue not drawing all XValues
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Axes (show other bugs)
Version: unspecified
Hardware: PC All
: --- major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-02-20 09:08 EST by christopher ireland
Modified: 2023-02-20 10:18 EST (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments
screenshot (36.96 KB, image/png)
2023-02-20 09:08 EST, christopher ireland
Details

Note You need to log in before you can comment on or make changes to this bug.
Description christopher ireland 2023-02-20 09:08:20 EST
Created attachment 1036 [details]
screenshot

Code to reproduce:

        private void InitializeChart()
        {
            tChart1.Series.Add(typeof(Line));
            tChart1[0].Add(100, 10);
            tChart1[0].Add(200, 50);
            tChart1[0].Add(300, 200);
            tChart1[0].Add(400, 150);

            tChart1.Axes.Bottom.Labels.Style = AxisLabelStyle.PointValue;
        }

See screenshot for the result.