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 1492 - AxisBreaksTool not working with logarithmic axes
Summary: AxisBreaksTool not working with logarithmic axes
Status: CONFIRMED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Tools (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-04-04 07:12 EDT by narcís calvet
Modified: 2016-09-28 06:25 EDT (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 narcís calvet 2016-04-04 07:12:13 EDT
Same as in Delphi although the behaviour is different: http://bugs.teechart.net/show_bug.cgi?id=1490

Code to reproduce the problem:

      tChart1.Series.Add(new Steema.TeeChart.Styles.Line());

      tChart1.Aspect.View3D = false;
      tChart1.Axes.Left.Logarithmic = true;

      for (int i = 0; i <= 1000; i++)
      {
        tChart1[0].Add(i);
      }

      var axisBreaks1 = new Steema.TeeChart.Tools.AxisBreaksTool(tChart1.Chart);
      
      axisBreaks1.Axis = tChart1.Axes.Left;
      axisBreaks1.Breaks.Add(new Steema.TeeChart.Tools.AxisBreak(axisBreaks1));
      axisBreaks1.Breaks[0].StartValue = 10;
      axisBreaks1.Breaks[0].EndValue = 20;