TiPlotChannelCustom.YAxisName
TiPlotChannelCustom See Also
Specifies the name of the Y-Axis used for plotting the channel y data against.
property YAxisName : String;
Description
Use YAxisName to get or set the name of the Y-Axis used for plotting the
channel y data. If the YAxisName is not a valid Y-Axis name, the channel data will
not be drawn.
Example
Delphi
iComponent.Channel[0].YAxisName := 'Y-Axis 1';
iComponent.Channel[0].YAxisName := iComponent.YAxis[0].Name;
C++ Builder
iComponent->Channel[0]->YAxisName = "Y-Axis 1";
iComponent->Channel[0]->YAxisName = iComponent->YAxis[0]->Name;
Contents | Index | Previous | Next