Skip to content

Commit f3e46b9

Browse files
Apostolos Giatsidisntacheva
andauthored
docs(chart): remove images (#709)
* docs(chart): remove images * docs(chart): remove images * docs(chart): removed image files * Update components/chart/events.md * Update components/chart/types/area.md Co-authored-by: Nadezhda Tacheva <[email protected]>
1 parent 3aa4ec7 commit f3e46b9

File tree

77 files changed

+9
-235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+9
-235
lines changed

_contentTemplates/chart/link-to-basics.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,6 @@ Colors per series item
5353
}
5454
````
5555

56-
>caption The result from the code snippet above
57-
58-
![](images/color-field-bar-column-chart.png)
59-
6056
#end
6157

6258
#gap-and-spacing
@@ -120,9 +116,6 @@ You can render the lines between the points with different styles. The supported
120116

121117
* `Smooth`—This style causes the Chart to display a fitted curve through data points. It is suitable when the data requires to be displayed with a curve, or when you wish to connect the points with smooth instead of straight lines. Not supported with [stacked]({%slug components/chart/stack%}) series with missing values.
122118

123-
>caption Comparison between the line styles
124-
125-
![](images/line-chart-step-and-smooth.png)
126119
#end
127120

128121
#opacity-area-bubble

components/chart/data-bind.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,6 @@ Independent data
7979
}
8080
````
8181

82-
>caption The result from the code snippet above
83-
84-
![](images/independent-series-binding.png)
85-
8682
## Attach Series Items to Their Categories
8783

8884
You can provide a `List<object>` to the `Data` property of a series that contains both its data points, and its x-axis categories. Then, set the series:
@@ -128,10 +124,6 @@ One model for all the chart data
128124
}
129125
````
130126

131-
>caption The result from the code snippet above
132-
133-
![](images/bind-chart-to-single-collection.png)
134-
135127
>caption Unique categories are added independently.
136128
137129
````CSHTML
@@ -167,10 +159,6 @@ Separate fields for series categories
167159
}
168160
````
169161

170-
>caption The result from the code snippet above
171-
172-
![](images/unique-categories.png)
173-
174162
>tip You can define [multiple x-axes](multiple-axes) to avoid this behavior and have each series populate its own x-axis.
175163
176164
>caption If category values match, they will be combined
@@ -211,10 +199,6 @@ Combining matching standalone categories
211199
}
212200
````
213201

214-
>caption The result from the code snippet above
215-
216-
![](images/matching-categories.png)
217-
218202
## Mixed Data Source
219203

220204
You can choose where to take the categories and series data from, and combine both approaches to a solution that fits the existing data models and data retrieval logic that you have.
@@ -263,10 +247,6 @@ Mixed data binding
263247
}
264248
````
265249

266-
>caption The result from the code snippet above
267-
268-
![](images/mixed-data-sources-1.png)
269-
270250
>caption Populate categories from model, and some series from standalone data. Standalone categories are ignored.
271251
272252
````CSHTML
@@ -309,11 +289,6 @@ Standalone categories are ignored when there is category data binding to a model
309289
}
310290
````
311291

312-
>caption The result from the code snippet above
313-
314-
![](images/standalone-categories-ignored-if-bound-from-series.png)
315-
316-
317292
## Numerical Charts
318293

319294
Numerical charts do not use categories and you do not need to consider how the x-axis is shared between the series and whether several data points will be in the same zone. You can provide a model for each series that contains the necessary information (x-value, y-value, and any other value that may be needed, such as size for bubble charts) and they will be plotted independently.

components/chart/date-axis.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,6 @@ Grouping by month, aggregates
7171
}
7272
````
7373

74-
>caption The result from the code snippet above
75-
76-
![](images/date-axis.png)
77-
7874
### Advanced Features
7975

8076
#### Automatic Fitting
@@ -168,9 +164,7 @@ If the data provided to the chart uses the complete `DateTime` format, this will
168164

169165
For example, if the chosen `BaseUnit` is `days`, the X labels mark the beginning of the day and the data records also specify time values, their markers will be rendered at the corresponding to their time value point and not exactly on the label for this day. This specific behavior when working with `DateTime` values could be observed in the following examples:
170166

171-
>caption ScatterLine chart with day and time values. Markers are rendered after the day labels to also respect the time values. The result from the snippet below
172-
173-
![ScatterLine chart with day and time values](images/scatter-line-day-and-time.png)
167+
>caption ScatterLine chart with day and time values. Markers are rendered after the day labels to also respect the time values.
174168
175169
````CSHTML
176170
@* ScatterLine chart with day and time values for the X-axis *@
@@ -225,9 +219,7 @@ For example, if the chosen `BaseUnit` is `days`, the X labels mark the beginning
225219
````
226220
<br/>
227221

228-
>caption ScatterLine chart with only days values. Markers are rendered exactly on the day labels. The result from the snippet below
229-
230-
![ScatterLine chart with only day values](images/scatter-line-days-only.png)
222+
>caption ScatterLine chart with only days values. Markers are rendered exactly on the day labels.
231223
232224
````CSHTML
233225
@* ScatterLine chart with only day values for the X-axis *@

components/chart/events.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,6 @@ These examples showcase the different applications of the `OnSeriesClick` event.
107107
}
108108
````
109109

110-
>caption The result from the code snippet above
111-
112-
![onseriesclick basic example](images/onseries-click-basic-example.gif)
113-
114110

115111
### Get The Data Model For The Clicked Series
116112

@@ -177,9 +173,6 @@ These examples showcase the different applications of the `OnSeriesClick` event.
177173
}
178174
````
179175

180-
>caption The result from the code snippet above
181-
182-
![onseriesclick get data model example](images/onseries-click-get-model-example.gif)
183176

184177

185178
### Load Data On Demand Based On Series Click
-8.31 KB
Binary file not shown.
-3.59 KB
Binary file not shown.
-11.6 KB
Binary file not shown.
-5.39 KB
Binary file not shown.
-16.9 KB
Binary file not shown.
-3.69 KB
Binary file not shown.

0 commit comments

Comments
 (0)