Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Waterfall: Replace Double to Number in API.
  • Loading branch information
ASmirnov-HORIS committed Aug 8, 2024
commit b00e06353ff9257e7aa6067143e91a15249023ee
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,17 @@ fun waterfallPlot(
group: String? = null,
color: String? = null,
fill: String? = null,
size: Double? = null,
alpha: Double? = null,
size: Number? = null,
alpha: Number? = null,
linetype: Any? = null,
width: Double? = null,
width: Number? = null,
showLegend: Boolean? = null,
relativeTooltips: Any? = null,
absoluteTooltips: Any? = null,
calcTotal: Boolean? = null,
totalTitle: String? = null,
sortedValue: Boolean? = null,
threshold: Double? = null,
threshold: Number? = null,
maxValues: Int? = null,
hline: Any? = null,
hlineOntop: Boolean? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ internal class WaterfallPlotBuilder(
private val group: String?,
private val color: String?,
private val fill: String?,
private val size: Double?,
private val alpha: Double?,
private val size: Number?,
private val alpha: Number?,
private val linetype: Any?,
private val width: Double?,
private val width: Number?,
private val showLegend: Boolean?,
private val relativeTooltips: Any?,
private val absoluteTooltips: Any?,
private val calcTotal: Boolean?,
private val totalTitle: String?,
private val sortedValue: Boolean?,
private val threshold: Double?,
private val threshold: Number?,
private val maxValues: Int?,
private val hline: Any?,
private val hlineOntop: Boolean?,
Expand Down