- Implements:
Methods
add Series(series Request) → {String}
Adds a new series to the chart component.
Parameters:
Name | Type | Description |
---|---|---|
seriesRequest |
Object | A |
Returns:
The ID of the new series.
- Type
- String
add Study(series Id, alias, derivation Params, adapteropt) → {Object}
Adds a new study to the chart component. This method is optional and doesn't need to be implemented.
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
seriesId |
String | The ID of the series to which to add the study. |
|
alias |
String | Alias under which the study class is aliased. |
|
derivationParams |
String | Map of derivation options for the |
|
adapter |
module:ct-chart |
<optional> |
An |
Returns:
The newly added study object.
- Type
- Object
hide Study(series Id, study Id)
Hide the study on the chart. This method is optional and doesn't need to be implemented.
Parameters:
Name | Type | Description |
---|---|---|
seriesId |
String | ID of the series that has the study. |
studyId |
String | ID of the study to hide. |
remove Series(series Id)
Removes a series from the chart component.
Parameters:
Name | Type | Description |
---|---|---|
seriesId |
String | The ID of the series to remove. |
remove Study(series Id, study Id)
Removes a study from the chart component. This method is optional and doesn't need to be implemented.
Parameters:
Name | Type | Description |
---|---|---|
seriesId |
String | ID of the series that has the study. |
studyId |
String | ID of the study to remove. |
show Study(series Id, study Id)
Show the study on the chart. This method is optional and doesn't need to be implemented.
Parameters:
Name | Type | Description |
---|---|---|
seriesId |
String | ID of the series that has the study. |
studyId |
String | ID of the study to show. |