UseWksLbls Property

The UseWksLbls property returns or sets the use of worksheet labels in ternary diagrams. Returns a Boolean.

Syntax

object.UseWksLbls

object.UseWksLbls = UseWksLbls

 

Parameter Type Description
UseWksLbls Boolean required, default is false - do not use labels from the worksheet

 

Remarks

You must set the Labels property to true to display worksheet labels.

Example

This example shows how to display ternary plot labels from the worksheet.

'Display ternary plot labels

TernaryPlot.Labels.ShowLabels = True

 

'Use worksheet labels

TernaryPlot.UseWksLbls = True

 

Used by: AutoTernaryPlot object