@cfasim-ui/docs 0.5.1 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/charts/BarChart/BarChart.md +3 -0
- package/charts/BarChart/BarChart.vue +342 -317
- package/charts/ChartMenu/ChartMenu.vue +75 -5
- package/charts/ChoroplethMap/ChoroplethMap.md +5 -0
- package/charts/ChoroplethMap/ChoroplethMap.vue +193 -88
- package/charts/LineChart/LineChart.md +87 -5
- package/charts/LineChart/LineChart.vue +405 -367
- package/charts/_shared/chartProps.ts +10 -0
- package/charts/_shared/useChartFoundation.ts +15 -0
- package/charts/_shared/useChartFullscreen.ts +66 -9
- package/charts/_shared/useChartMenu.ts +13 -6
- package/charts/_shared/useChartTooltip.ts +57 -4
- package/charts/index.ts +0 -2
- package/components/ButtonGroup/ButtonGroup.md +64 -0
- package/components/ButtonGroup/ButtonGroup.vue +91 -0
- package/components/MultiSelect/MultiSelect.md +143 -0
- package/components/MultiSelect/MultiSelect.vue +338 -0
- package/components/ParamEditor/ParamEditor.md +19 -0
- package/components/ParamEditor/ParamEditor.vue +4 -0
- package/components/ParamEditor/ParamEditorImpl.vue +3 -3
- package/components/SelectBox/SelectBox.md +72 -1
- package/components/SelectBox/SelectBox.vue +157 -1
- package/components/ToggleGroup/ToggleGroup.md +163 -0
- package/components/ToggleGroup/ToggleGroup.vue +143 -0
- package/components/index.ts +5 -0
- package/index.json +56 -2
- package/package.json +1 -1
- package/charts/_shared/fullscreen.css +0 -51
|
@@ -197,6 +197,8 @@ contrast).
|
|
|
197
197
|
|
|
198
198
|
### Horizontal orientation
|
|
199
199
|
|
|
200
|
+
On touch devices the tooltip scrubs along the category axis: drag horizontally on a vertical (column) chart and vertically on a horizontal chart. A swipe in the other direction scrolls the page instead of being captured by the chart.
|
|
201
|
+
|
|
200
202
|
<ComponentDemo>
|
|
201
203
|
<BarChart
|
|
202
204
|
:data="[42, 31, 18, 12, 7]"
|
|
@@ -722,6 +724,7 @@ anchor. `lineColor`, `lineWidth`, and `lineDash` style the line.
|
|
|
722
724
|
| `filename` | `string` | No | — |
|
|
723
725
|
| `downloadLink` | `boolean \| string` | No | — |
|
|
724
726
|
| `downloadButton` | `boolean \| string` | No | — |
|
|
727
|
+
| `fullscreenTarget` | `string \| HTMLElement` | No | — |
|
|
725
728
|
| `annotations` | `readonly ChartAnnotation[]` | No | — |
|
|
726
729
|
| `chartPadding` | `ChartPadding` | No | — |
|
|
727
730
|
| `data` | `BarChartData` | No | — |
|