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
Copy file name to clipboardExpand all lines: _contentTemplates/chart/link-to-basics.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,3 +123,9 @@ You can render the lines between the points with different styles. The supported
123
123

124
124
#end
125
125
126
+
#opacity-area-bubble
127
+
### Opacity
128
+
129
+
You can control how transparent the series fill is through the `Opacity` property. `0` means a completely transparent series, and `1` means a completely opaque (non-transparent) fill. You can use decimal values to set the desired transparency (for example, `Opacity="0.3"`).
Copy file name to clipboardExpand all lines: components/chart/types/area.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,9 +72,7 @@ The color of a series is controlled through the `Color` property that can take a
72
72
73
73
You can control the color of the line itself separately by using the `Color` property of the nested `TelerikChartSeriesLine` tag.
74
74
75
-
### Opacity
76
-
77
-
You can control how transparent the area fill is through the `Opacity` property. `0` means a completely opaque (non-transparent) series, and `255` means a completely transparent fill.
Copy file name to clipboardExpand all lines: components/chart/types/bubble.md
+43-9Lines changed: 43 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,23 +104,57 @@ The color of a series is controlled through the `Color` property that can take a
104
104
105
105
The `ColorField` can change the color of individual items. To use it, pass a valid CSS color to the corresponding field in the model and the chart will use its values instead of the `Color` parameter.
You can control how transparent the bubble fill is through the `Opacity` property. `0` means a completely opaque (non-transparent) series, and `255` means a completely transparent fill.
112
110
113
-
-->
114
-
115
-
116
-
<!--
117
111
### Negative Values
118
112
119
113
Negative values are allowed for the X and Y fields, because they are plotted on standard numerical axes.
120
114
121
-
The size field should, generally, have positive values as it correlates to the physical size of the bubble. To render negativ values, set the `NegativeValuesVisible` parameter of the series to `true`. They will be calculated as if their values are positive. To distinguish one from the other, you can have negative items show up in a different color through the `NegativeColor` parameter of the serires.
115
+
The size field should, generally, have positive values as it correlates to the physical size of the bubble. To render negative values, set the `Visible` parameter of the `ChartSeriesNegativeValues` tag of the series to `true`. Bubbles with negative size values will be calculated as if their sizes are positive. To distinguish one from the other, you can have negative items show up in a different color through the `Color` parameter of the `ChartSeriesNegativeValues` tag.
116
+
117
+
>caption Negative bubble size
118
+
119
+
````CSHTML
120
+
@* Negative bubble sizes can showcase decreases in values and can render in different color than the rest of the series *@
0 commit comments