Description
Select whether to display the result's value range on the left or right side of the graph.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property YAxis() As String
|
[C#] |
---|
public string YAxis {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_YAxis(); public: __property void set_YAxis(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_YAxis(
BSTR * pRetVal
);
public: HRESULT put_YAxis(
BSTR InVal
);
|
[Java] |
---|
public String getYAxis();
public void setYAxis(
String
);
|
[Python - STK API] |
---|
@property
def YAxis(self) -> str:
@YAxis.setter
def YAxis(self, InVal:str) -> None:
|
See Also