Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.github.mikephil.charting.data

import com.github.mikephil.charting.interfaces.datasets.IBarLineScatterCandleBubbleDataSet

/**
* Baseclass for all Line, Bar, Scatter, Candle and Bubble data.
*/
abstract class BarLineScatterCandleBubbleData<T : IBarLineScatterCandleBubbleDataSet<out Entry>> : ChartData<T> {
constructor() : super()

constructor(vararg sets: T) : super(*sets)

constructor(sets: MutableList<T>) : super(sets)
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import com.github.mikephil.charting.interfaces.datasets.ILineDataSet
/**
* Data object that encapsulates all data associated with a LineChart.
*/
class LineData : BarLineScatterCandleBubbleData<ILineDataSet?> {
class LineData : BarLineScatterCandleBubbleData<ILineDataSet> {
constructor() : super()

constructor(vararg dataSets: ILineDataSet) : super(*dataSets)

constructor(dataSets: MutableList<ILineDataSet>?) : super(dataSets)
constructor(dataSets: MutableList<ILineDataSet>) : super(dataSets)
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ import kotlin.math.sqrt
*/
@Suppress("MemberVisibilityCanBePrivate")
class BarLineChartTouchListener(
chart: BarLineChartBase<out BarLineScatterCandleBubbleData<out IBarLineScatterCandleBubbleDataSet<out Entry>?>?>,
chart: BarLineChartBase<out BarLineScatterCandleBubbleData<out IBarLineScatterCandleBubbleDataSet<out Entry>>>,
touchMatrix: Matrix,
dragTriggerDistance: Float
) :
ChartTouchListener<BarLineChartBase<out BarLineScatterCandleBubbleData<out IBarLineScatterCandleBubbleDataSet<out Entry>?>?>?>(chart) {
ChartTouchListener<BarLineChartBase<out BarLineScatterCandleBubbleData<out IBarLineScatterCandleBubbleDataSet<out Entry>>?>?>(chart) {
/**
* the original touch-matrix from the chart
*/
Expand Down
Loading