From 90cc16722e02e0d0a1ee990f2763710661868ed2 Mon Sep 17 00:00:00 2001 From: Hannes Achleitner Date: Sun, 18 Jan 2026 15:31:35 +0100 Subject: [PATCH] Cosmetic --- .../info/appdev/charting/interfaces/datasets/IBarDataSet.kt | 1 - .../appdev/charting/interfaces/datasets/IBubbleDataSet.kt | 6 +----- .../info/appdev/charting/interfaces/datasets/IPieDataSet.kt | 6 ++---- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IBarDataSet.kt b/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IBarDataSet.kt index 0940bc2451..a29dc8da7d 100644 --- a/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IBarDataSet.kt +++ b/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IBarDataSet.kt @@ -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 diff --git a/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IBubbleDataSet.kt b/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IBubbleDataSet.kt index 4528ad401c..43f8efb491 100644 --- a/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IBubbleDataSet.kt +++ b/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IBubbleDataSet.kt @@ -8,11 +8,7 @@ interface IBubbleDataSet : IBarLineScatterCandleBubbleDataSet { 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 } diff --git a/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IPieDataSet.kt b/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IPieDataSet.kt index fac8a18cd9..658602dc72 100644 --- a/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IPieDataSet.kt +++ b/chartLib/src/main/kotlin/info/appdev/charting/interfaces/datasets/IPieDataSet.kt @@ -5,8 +5,7 @@ import info.appdev.charting.data.PieEntry interface IPieDataSet : IDataSet { /** - * 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 @@ -17,8 +16,7 @@ interface IPieDataSet : IDataSet { 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