TX
- The type of X-DataTY
- The type of Y-Datapublic interface IHeatmapDataDistributionCalculator<TX extends java.lang.Comparable<TX>,TY extends java.lang.Comparable<TY>>
extends com.scichart.data.model.IDataDistributionProvider
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clears the DataDistributionCalculator flags
|
void |
onUpdateXValue(com.scichart.data.model.ISmartList<TX> values,
int indexWhereUpdate,
TX newValue,
boolean acceptUnsortedData)
Called when X Value is updated.
|
void |
onUpdateXValues(com.scichart.data.model.ISmartList<TX> values,
int indexWhereUpdate,
com.scichart.core.model.IValues<TX> newValues,
boolean acceptUnsortedData)
Called when X Values are updated.
|
void |
onUpdateYValue(com.scichart.data.model.ISmartList<TY> values,
int indexWhereUpdate,
TY newValue,
boolean acceptUnsortedData)
Called when Y Value is updated.
|
void |
onUpdateYValues(com.scichart.data.model.ISmartList<TY> values,
int indexWhereUpdate,
com.scichart.core.model.IValues<TY> newValues,
boolean acceptUnsortedData)
Called when Y Values are updated.
|
void onUpdateXValue(com.scichart.data.model.ISmartList<TX> values, int indexWhereUpdate, TX newValue, boolean acceptUnsortedData)
values
- The X valuesindexWhereUpdate
- The index where new X value is updatednewValue
- The new X valueacceptUnsortedData
- if set to true the series accepts unsorted datavoid onUpdateXValues(com.scichart.data.model.ISmartList<TX> values, int indexWhereUpdate, com.scichart.core.model.IValues<TX> newValues, boolean acceptUnsortedData)
values
- The X valuesindexWhereUpdate
- The index where new X values are updatednewValues
- The new X valuesacceptUnsortedData
- if set to true the series accepts unsorted datavoid onUpdateYValue(com.scichart.data.model.ISmartList<TY> values, int indexWhereUpdate, TY newValue, boolean acceptUnsortedData)
values
- The Y valuesindexWhereUpdate
- The index where new Y value is updatednewValue
- The new Y valueacceptUnsortedData
- if set to true the series accepts unsorted datavoid onUpdateYValues(com.scichart.data.model.ISmartList<TY> values, int indexWhereUpdate, com.scichart.core.model.IValues<TY> newValues, boolean acceptUnsortedData)
values
- The Y valuesindexWhereUpdate
- The index where new Y values are updatednewValues
- The new Y valuesacceptUnsortedData
- if set to true the series accepts unsorted datavoid clear()