From e992f3f13ec46cad15cc7d6982e64ffc7223eb9a Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sun, 10 Mar 2019 14:42:30 +0100 Subject: API documentation for KVision 0.0.29 --- .../-legend-options/-init-.html | 15 +++ .../-legend-options/display.html | 14 +++ .../-legend-options/full-width.html | 14 +++ .../-legend-options/index.html | 105 +++++++++++++++++++++ .../-legend-options/labels.html | 14 +++ .../-legend-options/on-click.html | 14 +++ .../-legend-options/on-hover.html | 14 +++ .../-legend-options/position.html | 14 +++ .../-legend-options/reverse.html | 14 +++ 9 files changed, 218 insertions(+) create mode 100644 api/pl.treksoft.kvision.chart/-legend-options/-init-.html create mode 100644 api/pl.treksoft.kvision.chart/-legend-options/display.html create mode 100644 api/pl.treksoft.kvision.chart/-legend-options/full-width.html create mode 100644 api/pl.treksoft.kvision.chart/-legend-options/index.html create mode 100644 api/pl.treksoft.kvision.chart/-legend-options/labels.html create mode 100644 api/pl.treksoft.kvision.chart/-legend-options/on-click.html create mode 100644 api/pl.treksoft.kvision.chart/-legend-options/on-hover.html create mode 100644 api/pl.treksoft.kvision.chart/-legend-options/position.html create mode 100644 api/pl.treksoft.kvision.chart/-legend-options/reverse.html (limited to 'api/pl.treksoft.kvision.chart/-legend-options') diff --git a/api/pl.treksoft.kvision.chart/-legend-options/-init-.html b/api/pl.treksoft.kvision.chart/-legend-options/-init-.html new file mode 100644 index 00000000..7541890a --- /dev/null +++ b/api/pl.treksoft.kvision.chart/-legend-options/-init-.html @@ -0,0 +1,15 @@ + + + +LegendOptions.<init> - kvision + + + +kvision / pl.treksoft.kvision.chart / LegendOptions / <init>
+
+

<init>

+ +LegendOptions(display: Boolean = true, position: Position = Position.TOP, fullWidth: Boolean = true, reverse: Boolean = false, onClick: (event: MouseEvent, legendItem: ChartLegendLabelItem) -> Unit = null, onHover: (event: MouseEvent, legendItem: ChartLegendLabelItem) -> Unit = null, labels: LegendLabelOptions? = null) +

Chart legend options.

+ + diff --git a/api/pl.treksoft.kvision.chart/-legend-options/display.html b/api/pl.treksoft.kvision.chart/-legend-options/display.html new file mode 100644 index 00000000..735dc897 --- /dev/null +++ b/api/pl.treksoft.kvision.chart/-legend-options/display.html @@ -0,0 +1,14 @@ + + + +LegendOptions.display - kvision + + + +kvision / pl.treksoft.kvision.chart / LegendOptions / display
+
+

display

+ +val display: Boolean + + diff --git a/api/pl.treksoft.kvision.chart/-legend-options/full-width.html b/api/pl.treksoft.kvision.chart/-legend-options/full-width.html new file mode 100644 index 00000000..9f656066 --- /dev/null +++ b/api/pl.treksoft.kvision.chart/-legend-options/full-width.html @@ -0,0 +1,14 @@ + + + +LegendOptions.fullWidth - kvision + + + +kvision / pl.treksoft.kvision.chart / LegendOptions / fullWidth
+
+

fullWidth

+ +val fullWidth: Boolean + + diff --git a/api/pl.treksoft.kvision.chart/-legend-options/index.html b/api/pl.treksoft.kvision.chart/-legend-options/index.html new file mode 100644 index 00000000..8c071d2e --- /dev/null +++ b/api/pl.treksoft.kvision.chart/-legend-options/index.html @@ -0,0 +1,105 @@ + + + +LegendOptions - kvision + + + +kvision / pl.treksoft.kvision.chart / LegendOptions
+
+

LegendOptions

+data class LegendOptions +

Chart legend options.

+

Constructors

+ + + + + + + +
+

<init>

+
+LegendOptions(display: Boolean = true, position: Position = Position.TOP, fullWidth: Boolean = true, reverse: Boolean = false, onClick: (event: MouseEvent, legendItem: ChartLegendLabelItem) -> Unit = null, onHover: (event: MouseEvent, legendItem: ChartLegendLabelItem) -> Unit = null, labels: LegendLabelOptions? = null) +

Chart legend options.

+
+

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

display

+
+val display: Boolean
+

fullWidth

+
+val fullWidth: Boolean
+

labels

+
+val labels: LegendLabelOptions?
+

onClick

+
+val onClick: (event: MouseEvent, legendItem: ChartLegendLabelItem) -> Unit
+

onHover

+
+val onHover: (event: MouseEvent, legendItem: ChartLegendLabelItem) -> Unit
+

position

+
+val position: Position
+

reverse

+
+val reverse: Boolean
+

Extension Functions

+ + + + + + + + + + + +
+

createInstance

+
+fun <T> Any?.createInstance(vararg args: dynamic): T +

Helper function for creating JavaScript objects from dynamic constructors.

+
+

toJs

+
+fun LegendOptions.toJs(): dynamic +

An extension function to convert configuration class to JS object.

+
+ + diff --git a/api/pl.treksoft.kvision.chart/-legend-options/labels.html b/api/pl.treksoft.kvision.chart/-legend-options/labels.html new file mode 100644 index 00000000..b8fba890 --- /dev/null +++ b/api/pl.treksoft.kvision.chart/-legend-options/labels.html @@ -0,0 +1,14 @@ + + + +LegendOptions.labels - kvision + + + +kvision / pl.treksoft.kvision.chart / LegendOptions / labels
+
+

labels

+ +val labels: LegendLabelOptions? + + diff --git a/api/pl.treksoft.kvision.chart/-legend-options/on-click.html b/api/pl.treksoft.kvision.chart/-legend-options/on-click.html new file mode 100644 index 00000000..53d039c1 --- /dev/null +++ b/api/pl.treksoft.kvision.chart/-legend-options/on-click.html @@ -0,0 +1,14 @@ + + + +LegendOptions.onClick - kvision + + + +kvision / pl.treksoft.kvision.chart / LegendOptions / onClick
+
+

onClick

+ +val onClick: (event: MouseEvent, legendItem: ChartLegendLabelItem) -> Unit + + diff --git a/api/pl.treksoft.kvision.chart/-legend-options/on-hover.html b/api/pl.treksoft.kvision.chart/-legend-options/on-hover.html new file mode 100644 index 00000000..58d23ada --- /dev/null +++ b/api/pl.treksoft.kvision.chart/-legend-options/on-hover.html @@ -0,0 +1,14 @@ + + + +LegendOptions.onHover - kvision + + + +kvision / pl.treksoft.kvision.chart / LegendOptions / onHover
+
+

onHover

+ +val onHover: (event: MouseEvent, legendItem: ChartLegendLabelItem) -> Unit + + diff --git a/api/pl.treksoft.kvision.chart/-legend-options/position.html b/api/pl.treksoft.kvision.chart/-legend-options/position.html new file mode 100644 index 00000000..6d485d64 --- /dev/null +++ b/api/pl.treksoft.kvision.chart/-legend-options/position.html @@ -0,0 +1,14 @@ + + + +LegendOptions.position - kvision + + + +kvision / pl.treksoft.kvision.chart / LegendOptions / position
+
+

position

+ +val position: Position + + diff --git a/api/pl.treksoft.kvision.chart/-legend-options/reverse.html b/api/pl.treksoft.kvision.chart/-legend-options/reverse.html new file mode 100644 index 00000000..9aa3e89a --- /dev/null +++ b/api/pl.treksoft.kvision.chart/-legend-options/reverse.html @@ -0,0 +1,14 @@ + + + +LegendOptions.reverse - kvision + + + +kvision / pl.treksoft.kvision.chart / LegendOptions / reverse
+
+

reverse

+ +val reverse: Boolean + + -- cgit