corelibraries-devexpress-dot-xtracharts-dot-axisbase-01cd534f.md
Gets or sets a value specifying a logarithmic base when the AxisBase.Logarithmic property is enabled.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public virtual double LogarithmicBase { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)>
Public Overridable Property LogarithmicBase As Double
| Type | Description |
|---|---|
| Double |
A Double value which specifies the logarithmic base.
|
If a chart’s series have their SeriesBase.ArgumentScaleType or SeriesBase.ValueScaleType properties set to ScaleType.Numerical, you can use the AxisBase.Logarithmic property to specify whether the logarithmic scale should be used to display axis values. When it is set to true , you can also define a logarithmic base value via the LogarithmicBase property.
Via the LogarithmicBase property, you can define a base value to a logarithm, which will be used to calculate the axis values.
The following images demonstrate how the LogarithmicBase property works.
| LogarithmicBase = 10 | LogarithmicBase = 20 |
|---|---|
This example demonstrates how to use a logarithmic scale in XtraCharts, which is disabled by default.
Note
The logarithmic scale is only compatible with the numerical scale type.
To enable it, set the AxisBase.Logarithmic property to true , and set the AxisBase.LogarithmicBase property to the value required in your scenario.
using System;
using System.Windows.Forms;
using DevExpress.XtraCharts;
namespace LogarithmicScale {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void btnLogarithm10_Click(object sender, EventArgs e) {
AxisY axis = ((XYDiagram)chartControl1.Diagram).AxisY;
axis.Logarithmic = true;
axis.LogarithmicBase = 10;
axis.WholeRange.AlwaysShowZeroLevel = false;
}
private void btnLogarithm100_Click(object sender, EventArgs e) {
AxisY axis = ((XYDiagram)chartControl1.Diagram).AxisY;
axis.Logarithmic = true;
axis.LogarithmicBase = 100;
axis.WholeRange.AlwaysShowZeroLevel = false;
}
private void btnDisableLogarithm_Click(object sender, EventArgs e) {
AxisY axis = ((XYDiagram)chartControl1.Diagram).AxisY;
axis.Logarithmic = false;
axis.WholeRange.AlwaysShowZeroLevel = true;
}
}
}
Imports System
Imports System.Windows.Forms
Imports DevExpress.XtraCharts
Namespace LogarithmicScale
Partial Public Class Form1
Inherits Form
Public Sub New()
InitializeComponent()
End Sub
Private Sub btnLogarithm10_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnLogarithm10.Click
Dim axis As AxisY = CType(chartControl1.Diagram, XYDiagram).AxisY
axis.Logarithmic = True
axis.LogarithmicBase = 10
axis.WholeRange.AlwaysShowZeroLevel = False
End Sub
Private Sub btnLogarithm100_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnLogarithm100.Click
Dim axis As AxisY = CType(chartControl1.Diagram, XYDiagram).AxisY
axis.Logarithmic = True
axis.LogarithmicBase = 100
axis.WholeRange.AlwaysShowZeroLevel = False
End Sub
Private Sub btnDisableLogarithm_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnDisableLogarithm.Click
Dim axis As AxisY = CType(chartControl1.Diagram, XYDiagram).AxisY
axis.Logarithmic = False
axis.WholeRange.AlwaysShowZeroLevel = True
End Sub
End Class
End Namespace
See Also