MindFusion.Charting Programmer's Guide

AxisSettings.LabelPrefix Property

See Also
 





Gets or sets the prefix drawn with each label.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public string LabelPrefix { get; set; }

Visual Basic  Copy Code

Public Property LabelPrefix As String

 Property Value

A string value that represents the label prefix.

 Remarks

The property specifies a prefix drawn before each label at the axis. It doesn't depend on the type of the labels and their format. The prefix is the same for all labels.

There are no limits for the length or type of the prefix, so you can use it to set any text you wish to appear before the label, for example USD, $, MB and so on.

Default value for the LabelPrefix property is an empty string ("").

 See Also