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 1387 - MinorTicksCount not rendering on all sections of a logarithmic axis.
Summary: MinorTicksCount not rendering on all sections of a logarithmic axis.
Status: CONFIRMED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Axes (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks: 1388
  Show dependency treegraph
 
Reported: 2015-12-09 11:36 EST by christopher ireland
Modified: 2015-12-09 12:58 EST (History)
0 users

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 christopher ireland 2015-12-09 11:36:41 EST
With the following code, note the behaviour of the MinorTicks when the Axis is set to Logarithmic:

    private void InitializeChart()
    {
      tChart1.Aspect.View3D = false;
      tChart1.Series.Add(typeof(Line)).FillSampleValues(100);
      //tChart1.Axes.Bottom.Logarithmic = true;
    }

    private void button4_Click(object sender, EventArgs e)
    {
      tChart1.Axes.Bottom.Increment = 4;
      tChart1.Axes.Bottom.MinorTickCount = 5;
      tChart1.Axes.Bottom.MinorTicks.Length = 4;
      tChart1.Axes.Bottom.MinorTicks.Color = Color.Fuchsia;
      tChart1.Axes.Bottom.SetMinMax(2, 8);
    }

    private void button7_Click_1(object sender, EventArgs e)
    {
      tChart1.Axes.Bottom.Increment = 40;
      tChart1.Axes.Bottom.MinorTickCount = 5;
      tChart1.Axes.Bottom.MinorTicks.Length = 4;
      tChart1.Axes.Bottom.MinorTicks.Color = Color.Fuchsia;
      tChart1.Axes.Bottom.SetMinMax(2, 80);
    }
Comment 1 christopher ireland 2015-12-09 12:58:06 EST
This issue now blocks http://bugs.teechart.net/show_bug.cgi?id=1388 (it must be fixed first)