From 35ba11a0343f626aa1832b4ba43a0ed2363fc265 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sat, 6 Apr 2019 19:36:32 +0200 Subject: Dokka upgrade to 0.9.18 --- api/pl.treksoft.kvision.chart/-options/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'api/pl.treksoft.kvision.chart/-options/index.html') diff --git a/api/pl.treksoft.kvision.chart/-options/index.html b/api/pl.treksoft.kvision.chart/-options/index.html index b438676e..c276ec1e 100644 --- a/api/pl.treksoft.kvision.chart/-options/index.html +++ b/api/pl.treksoft.kvision.chart/-options/index.html @@ -18,7 +18,7 @@

<init>

-Options(responsive: Boolean = true, responsiveAnimationDuration: Int = 0, aspectRatio: Int = 2, maintainAspectRatio: Boolean = true, onResize: (chart: Chart, newSize: ChartSize) -> Unit = null, devicePixelRatio: Int? = null, hover: HoverOptions? = null, events: List<String>? = null, onHover: (chart: Chart, event: MouseEvent, activeElements: Array<Any>) -> Any = null, onClick: (chart: Chart, event: MouseEvent, activeElements: Array<Any>) -> Any = null, animation: AnimationOptions? = null, layout: LayoutOptions? = null, legend: LegendOptions? = null, legendCallback: (chart: Chart) -> String = null, title: TitleOptions? = null, tooltips: TooltipOptions? = null, elements: ElementsOptions? = null, scales: ChartScales? = null, showLines: Boolean? = null, spanGaps: Boolean? = null, cutoutPercentage: Int? = null, circumference: Double? = null, rotation: Double? = null) +Options(responsive: Boolean = true, responsiveAnimationDuration: Int = 0, aspectRatio: Int = 2, maintainAspectRatio: Boolean = true, onResize: ((chart: Chart, newSize: Chart.ChartSize) -> Unit)? = null, devicePixelRatio: Int? = null, hover: HoverOptions? = null, events: List<String>? = null, onHover: ((chart: Chart, event: MouseEvent, activeElements: Array<Any>) -> Any)? = null, onClick: ((chart: Chart, event: MouseEvent, activeElements: Array<Any>) -> Any)? = null, animation: AnimationOptions? = null, layout: LayoutOptions? = null, legend: LegendOptions? = null, legendCallback: ((chart: Chart) -> String)? = null, title: TitleOptions? = null, tooltips: TooltipOptions? = null, elements: ElementsOptions? = null, scales: ChartScales? = null, showLines: Boolean? = null, spanGaps: Boolean? = null, cutoutPercentage: Int? = null, circumference: Double? = null, rotation: Double? = null)

Chart options.

@@ -102,7 +102,7 @@

legendCallback

-val legendCallback: (chart: Chart) -> String +val legendCallback: ((chart: Chart) -> String)? @@ -116,21 +116,21 @@

onClick

-val onClick: (chart: Chart, event: MouseEvent, activeElements: Array<Any>) -> Any +val onClick: ((chart: Chart, event: MouseEvent, activeElements: Array<Any>) -> Any)?

onHover

-val onHover: (chart: Chart, event: MouseEvent, activeElements: Array<Any>) -> Any +val onHover: ((chart: Chart, event: MouseEvent, activeElements: Array<Any>) -> Any)?

onResize

-val onResize: (chart: Chart, newSize: ChartSize) -> Unit +val onResize: ((chart: Chart, newSize: Chart.ChartSize) -> Unit)? -- cgit