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

Summary: MinorTicksCount not rendering on all sections of a logarithmic axis.
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: AxesAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: normal    
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Bug Depends on:    
Bug Blocks: 1388    

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)