![]() | Steema Issues DatabaseNote: 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. |
| Summary: | MinorTicksCount not rendering on all sections of a logarithmic axis. | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | christopher ireland <chris> |
| Component: | Axes | Assignee: | 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 | ||
This issue now blocks http://bugs.teechart.net/show_bug.cgi?id=1388 (it must be fixed first) |
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); }