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,30 @@
package com.github.mikephil.charting.interfaces.datasets

import android.graphics.DashPathEffect
import com.github.mikephil.charting.data.Entry

interface ILineScatterCandleRadarDataSet<T : Entry> : IBarLineScatterCandleBubbleDataSet<T> {
/**
* Returns true if vertical highlight indicator lines are enabled (drawn)
* @return
*/
val isVerticalHighlightIndicatorEnabled: Boolean

/**
* Returns true if vertical highlight indicator lines are enabled (drawn)
* @return
*/
val isHorizontalHighlightIndicatorEnabled: Boolean

/**
* Returns the line-width in which highlight lines are to be drawn.
* @return
*/
val highlightLineWidth: Float

/**
* Returns the DashPathEffect that is used for highlighting.
* @return
*/
val dashPathEffectHighlight: DashPathEffect?
}
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ open class BarChartRenderer(
paintHighlight.color = set.highLightColor
paintHighlight.alpha = set.highLightAlpha

val isStack = if (high.stackIndex >= 0 && e.isStacked) true else false
val isStack = high.stackIndex >= 0 && e.isStacked

val y1: Float
val y2: Float
Expand Down
Loading