Contents  All Classes  Index A-Z  All Units


TChartAxis.LogarithmicBase
TChartAxis

property LogarithmicBase: Double;

Unit
TeEngine

Description
The LogarithmicBase property determines the "degree" or "base" to use to display axis labels when the Axis Logarithmic property is True.
It does not apply when Axis Logarithmic property is False.

By default is 10 ( log10 )

As an example, try to set it to 2 (binary log) :

Chart1.Axes.Left.Logarithmic := True ;
Chart1.Axes.Left.LogarithmicBase := 2;


It can also be set to floating point numbers, like base "e" :

Chart1.Axes.Left.Logarithmic := True ;
Chart1.Axes.Left.LogarithmicBase := 2.71828182845905;





Submit your feedback about this page.

Copyright 1995-2007 © by Steema Software. All Rights Reserved.