You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**[`gap`](#gap)**| Number | any Number that defines the gap between multiple circles in pixel | 0 |
142
-
|**[`dot`](#dot)**| String \| Number \| Object | Accepts size, color and other styles as Number, descriptive string `"10% red"` or object `{size : 10, backgroundColor: "red", widht: "2px", borderRadius: "5px" ...}`| 0 |
142
+
|**[`dot`](#dot)**| String \| Number \| Object | Accepts size, color and other styles as Number, descriptive string `"size [color]"` or object `{size [, backgroundColor, widht, borderRadius...]}`| 0 |
143
143
|**[`reverse`](#reverse)**| Boolean || false |
144
144
|**[`data`](#data)**| Array | defines multiple circles, takes as values Objects with almost all props defined above ||
145
145
@@ -229,7 +229,7 @@ The first value ist the `mode` and the optional second is the `offset`. You can
229
229
help you to align lines as you want to.
230
230
231
231
-`mode`:
232
-
-`center`: this is the default value and both lines are aligned at the base line (centered).
232
+
-`center`: this is the default value and both lines are aligned at the baseline (centered).
In general, any positioning can already be achieved with values `in` and `out` in a combination with certain `offset`. The modes, however, act like presets, which reduce the effort for the manuall calculations.
263
+
In general, any positioning can already be achieved with values `in` and `out` in a combination with certain `offset`. The modes, however, act like presets, which reduce the effort for the manual calculations.
264
264
265
265
<br>
266
266
@@ -269,7 +269,7 @@ In general, any positioning can already be achieved with values `in` and `out` i
269
269
270
270
###### Animated: ✔️
271
271
272
-
Descriptive string in form `"mode [offset]"` that defines how the progress line is aligned in relation to the cirlce fill area.
272
+
Descriptive string in form `"mode [offset]"` that defines how the progress line is aligned in relation to the circle fill area.
273
273
Available modes are `center`, `in` and `out`. Additionally, with the `out` mode you can provide an `offset` value as any Number.
274
274
In general, this prop makes it possible to mimic the SVG2 `stroke-aligment`, which is currently not supported in any browser.
@@ -561,7 +561,7 @@ The dot property lets you define a point indicator at the end of the progress li
561
561
562
562
**Number**: `:dot="10"` - specifies a round dot with 10px width and height and default `#713dfd` color
563
563
564
-
**Descriptive string**: `dot="size [color]"` - `size` can be just a Number or a percent value like `5%`, the calculation for percent values is similar to **[`thickness`](#thickness)** and depends on the **[`size`](#size)**. `color` is optional and lets you quickly define the color of the dot. The order of properties is important for parsing the String and you can set the `color` only if the `size` is defined.
564
+
**Descriptive string**: `dot="size [color]"` - `size` can be just a Number or a percent value like `5%`, the calculation for percent values is similar to **[`thickness`](#thickness)** and depends on the **[`size`](#size)**. `color` is optional and lets you quickly define the color of the dot. The order of properties is important for parsing the String, and you can set the `color` only if the `size` is defined.
565
565
566
566
**Object**: `:dot="{ size: Number | String [, any CSS inline style with Vue syntax] }"` - to customize the point, you can define the prop as an Object. `size` is required and can be just a Number or a String to define a percent value. Only defining the prop as an Object you have the possibility to add any styles to the dot you want to, using Vue syntax for defining inline styles, you can even completely break the positioning of the dot, if you need. You cannot override the `height` of the dot since it is important for internal calculation and must be controllable.
567
567
@@ -599,7 +599,7 @@ a negative value for [`progress`](#progress).
599
599
600
600
-### `data`
601
601
602
-
You can specify 2 or more circles as Objects in an array as `data`. For each circle you can use almost every available property. It is not necessary to specify all properties, they will be merged with global props and the specified props will overwrite the global. The circles are rendered inside each other.
602
+
You can specify 2 or more circles as Objects in an array as `data`. For each circle you can use almost every available property. It is not necessary to specify all properties, they will be merged with global props, the specified props will overwrite the global. The circles are rendered inside each other.
603
603
604
604
>❗ Excluded props: **[`lineMode`](#lineMode)**, **[`emptyThickness`](#emptyThickness)**, **[`legend`](#legend)**. These properties will be ignored, if `data` is specified. The legend of this circle is also not shown.
0 commit comments