Uses of Class
org.pepstock.charba.client.items.ScaleValueItem
-
Packages that use ScaleValueItem Package Description org.pepstock.charba.client.callbacks All callbacks interfaces to be implemented, also to use the scriptable options of CHART.JS.org.pepstock.charba.client.events Contains all events to interact with chart instance.org.pepstock.charba.client.items Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers. -
-
Uses of ScaleValueItem in org.pepstock.charba.client.callbacks
Methods in org.pepstock.charba.client.callbacks with parameters of type ScaleValueItem Modifier and Type Method Description String
CrosshairFormatterCallback. format(IsChart chart, ScaleItem scale, ScaleValueItem value)
Returns the text to apply to the crosshair label. -
Uses of ScaleValueItem in org.pepstock.charba.client.events
Methods in org.pepstock.charba.client.events that return ScaleValueItem Modifier and Type Method Description ScaleValueItem
DatasetRangeSelectionEvent. getFrom()
Returns the starting value of selected scale.ScaleValueItem
DatasetRangeSelectionEvent. getTo()
Returns the ending value of selected scale.ScaleValueItem
AxisClickEvent. getValue()
Returns the scale value related to the click, ornull
if not consistent.Constructors in org.pepstock.charba.client.events with parameters of type ScaleValueItem Constructor Description AxisClickEvent(BaseNativeEvent nativeEvent, ScaleItem item, Axis axis, ScaleValueItem value)
Creates the event with axis related to the clickDatasetRangeSelectionEvent(BaseNativeEvent nativeEvent, ScaleValueItem from, ScaleValueItem to)
Creates the event with start and end values of selected scale -
Uses of ScaleValueItem in org.pepstock.charba.client.items
Methods in org.pepstock.charba.client.items that return ScaleValueItem Modifier and Type Method Description ScaleValueItem
ScaleItem. getValueAtEvent(BaseNativeEvent event)
Returns the value on the axis related to an event position.ScaleValueItem
ScaleItem. getValueAtEvent(ChartEventContext context)
Returns the value on the axis related to an event position.ScaleValueItem
ScaleItem. getValueAtPixel(double position)
Returns the value on the axis related to a position, passed as pixels.
-