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
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package info.appdev.charting.interfaces.datasets

import androidx.annotation.ColorInt
import info.appdev.charting.data.BarEntry
import info.appdev.charting.utils.Fill

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ interface IBubbleDataSet : IBarLineScatterCandleBubbleDataSet<BubbleEntry> {
val isNormalizeSizeEnabled: Boolean

/**
* Returns the width of the highlight-circle that surrounds the bubble
*/
/**
* Sets the width of the circle that surrounds the bubble when highlighted,
* in dp.
* Sets the width of the circle that surrounds the bubble when highlighted in dp.
*/
var highlightCircleWidth: Float
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import info.appdev.charting.data.PieEntry

interface IPieDataSet : IDataSet<PieEntry> {
/**
* Returns the space that is set to be between the piechart-slices of this
* DataSet, in pixels.
* Returns the space that is set to be between the PieChart-slices of this DataSet, in pixels.
*/
val sliceSpace: Float

Expand All @@ -17,8 +16,7 @@ interface IPieDataSet : IDataSet<PieEntry> {
val isAutomaticallyDisableSliceSpacingEnabled: Boolean

/**
* Returns the distance a highlighted piechart slice is "shifted" away from
* the chart-center in dp.
* Returns the distance a highlighted PieChart slice is "shifted" away from the chart-center in dp.
*/
val selectionShift: Float

Expand Down
Loading