auto_SetDatasetStyleΒΆ

auto_SetDatasetStyle sets the dataset style for the next dataset to be created with the auto_LoadDataset function.

bool = auto_SetDatasetStyle(ssDiagram, nIndex)
bool = auto_SetDatasetStyle(ssDiagram, ssStyleName)

Return Value

bool is TRUE (1), when the style is set and otherwise, FALSE (0).

Parameters

ssDiagram

ssDiagram is the name of the diagram into which the next dataset should be imported.

nIndex

nIndex is the name of the style. It is case sensitive.

ssStyleName

ssStyleName is the name of the style. The name is case sensitive.

Example

auto_SetDatasetStyle("Torque", 3)
auto_LoadDataset("Torque", "RPM", "Torque");

id-1939463