-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathCombinedChart.kt
More file actions
23 lines (18 loc) · 973 Bytes
/
CombinedChart.kt
File metadata and controls
23 lines (18 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.github.mikephil.charting.charts
import android.content.Context
import android.util.AttributeSet
import android.util.Log
import info.appdev.charting.charts.CombinedChart
@Deprecated("Use same class from package info.appdev.charting.charts instead")
open class CombinedChart : CombinedChart {
@Deprecated("Use same class from package info.appdev.charting.charts instead")
constructor(context: Context?) : super(context)
@Deprecated("Use same class from package info.appdev.charting.charts instead")
constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs)
@Deprecated("Use same class from package info.appdev.charting.charts instead")
constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle)
override fun init() {
super.init()
Log.e("CombinedChart", "This class is deprecated. Please use info.appdev.charting.charts.CombinedChart instead.")
}
}