-
public interface ChartInterfaceInterface that provides everything there is to know about the dimensions, bounds, and range of the chart.
-
-
Method Summary
Modifier and Type Method Description abstract floatgetXChartMin()Returns the minimum x value of the chart, regardless of zoom or translation. abstract floatgetXChartMax()Returns the maximum x value of the chart, regardless of zoom or translation. abstract floatgetXRange()abstract floatgetYChartMin()Returns the minimum y value of the chart, regardless of zoom or translation. abstract floatgetYChartMax()Returns the maximum y value of the chart, regardless of zoom or translation. abstract floatgetMaxHighlightDistance()Returns the maximum distance in scren dp a touch can be away from an entry to cause it to get highlighted. abstract intgetWidth()abstract intgetHeight()abstract MPPointFgetCenterOfView()abstract MPPointFgetCenterOffsets()abstract RectFgetContentRect()abstract IValueFormattergetDefaultValueFormatter()abstract ChartDatagetData()abstract intgetMaxVisibleCount()-
-
Method Detail
-
getXChartMin
abstract float getXChartMin()
Returns the minimum x value of the chart, regardless of zoom or translation.
-
getXChartMax
abstract float getXChartMax()
Returns the maximum x value of the chart, regardless of zoom or translation.
-
getXRange
abstract float getXRange()
-
getYChartMin
abstract float getYChartMin()
Returns the minimum y value of the chart, regardless of zoom or translation.
-
getYChartMax
abstract float getYChartMax()
Returns the maximum y value of the chart, regardless of zoom or translation.
-
getMaxHighlightDistance
abstract float getMaxHighlightDistance()
Returns the maximum distance in scren dp a touch can be away from an entry to cause it to get highlighted.
-
getWidth
abstract int getWidth()
-
getHeight
abstract int getHeight()
-
getCenterOfView
abstract MPPointF getCenterOfView()
-
getCenterOffsets
abstract MPPointF getCenterOffsets()
-
getContentRect
abstract RectF getContentRect()
-
getDefaultValueFormatter
abstract IValueFormatter getDefaultValueFormatter()
-
getMaxVisibleCount
abstract int getMaxVisibleCount()
-
-
-
-