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