Skip to content

Commit d6db210

Browse files
Merge pull request #452 from Syncfusion-Content/hotfix/hotfix-v24.1.41
DOCINFRA-2341_merged_using_automation
2 parents 6ae7a59 + 2303534 commit d6db210

36 files changed

+42
-42
lines changed

js/Chart/Getting-Started.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Initialize the chart by using the ejChart method. The chart is rendered to the s
7676

7777
Now, the Chart is rendered with some auto-generated random values and with default Column chart type.
7878

79-
![JavaScript Chart getting started](Getting-Started_images/Getting-Started_img1.png)
79+
![JavaScript Chart getting started.](Getting-Started_images/javascript-chart-getting-started.png)
8080

8181

8282
## Populate chart with data
@@ -143,7 +143,7 @@ Now, map the month and sales values in the data source to the line series by set
143143

144144
{% endhighlight %}
145145

146-
![JavaScript Chart Populate chart with data](Getting-Started_images/Getting-Started_img2.png)
146+
![JavaScript Chart Populate chart with data.](Getting-Started_images/javascript-chart-data.png)
147147

148148

149149
Since the data is related to sales, format the vertical axis labels by adding ‘$’ as a prefix and ‘K’ as a suffix to each label. This can be achieved by setting the "${value}K" to the [`labelFormat`](../api/ejchart#members:primaryxaxis-labelformat) option of the axis. Here, {value} acts as a placeholder for each axis label, "$" and "K" are the actual prefix and suffix added to each axis label.
@@ -165,7 +165,7 @@ The following code example illustrates this,
165165

166166
{% endhighlight %}
167167

168-
![JavaScript Chart axis](Getting-Started_images/Getting-Started_img3.png)
168+
![JavaScript Chart axis.](Getting-Started_images/javascript-chart-axis.png)
169169

170170

171171
Refer to the [`Axis`](axis) section to know more about axis types, adding multiple axes and other customization options.
@@ -197,7 +197,7 @@ The following code example illustrates this,
197197

198198
{% endhighlight %}
199199

200-
![JavaScript Chart Add Data Labels](Getting-Started_images/Getting-Started_img4.png)
200+
![JavaScript Chart Add Data Labels.](Getting-Started_images/javascript-chart-data-labels.png)
201201

202202

203203
There are situations where the default label content is not sufficient to the user. In this case, you can use the [`template`](../api/ejchart#members:series-marker-datalabel-template) option to format the label content with some additional information.
@@ -241,7 +241,7 @@ The following code example shows how to set the id of the above template to [`te
241241

242242
{% endhighlight %}
243243

244-
![JavaScript Chart data marker](Getting-Started_images/Getting-Started_img5.png)
244+
![JavaScript Chart data marker.](Getting-Started_images/javascript-chart-data-marker.png)
245245

246246

247247
Refer to the [`Data Markers`](Data-Markers.html) section to know more about the options available to customize it.
@@ -272,7 +272,7 @@ You can enable or disable the legend by using the [`visible`](../api/ejchart#mem
272272

273273
{% endhighlight %}
274274

275-
![JavaScript Chart Enable Legend](Getting-Started_images/Getting-Started_img6.png)
275+
![JavaScript Chart Enable Legend.](Getting-Started_images/javascript-chart-legend.png)
276276

277277

278278
Refer to the [`Legend`](Legend.html) section to know more about how to position legend and customize its appearance.
@@ -300,7 +300,7 @@ The following code example illustrates this,
300300

301301
{% endhighlight %}
302302

303-
![JavaScript Chart Enable Tooltip](Getting-Started_images/Getting-Started_img7.png)
303+
![JavaScript Chart Enable Tooltip.](Getting-Started_images/javascript-chart-tooltip.png)
304304

305305

306306
Refer to the [`Tooltip`](user-interactions.html) section to know more about formatting tooltip contents and customizing its appearance.
@@ -324,7 +324,7 @@ You need to add a title to the chart to provide quick information to the user ab
324324

325325
{% endhighlight %}
326326

327-
![JavaScript Chart Add Chart Title](Getting-Started_images/Getting-Started_img8.png)
327+
![JavaScript Chart Add Chart Title.](Getting-Started_images/javascript-chart-title.png)
328328

329329

330330
Refer to the [`Chart Title`](chart-title.html) section to know more about aligning title, customizing its appearance and adding subtitle to the chart.

js/ColorPicker/Getting-Started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
---
22
layout: post
3-
title: Getting-Started
4-
description: getting started
3+
title: Getting Started with JavaScript Color Picker | Syncfusion
4+
description: Learn here all about getting started with Syncfusion Essential Studio JavaScript Color Picker control, its elements, and more details.
55
platform: js
66
control: ColorPicker
77
documentation: ug
88
api: /api/js/ejcolorpicker
99
---
1010

11-
# Getting Started
11+
# Getting Started with JavaScript Color Picker
1212

1313
This section explains briefly about how to create a **ColorPicker** in your application with **JavaScript**. The **Essential JavaScript ColorPicker** control provides you support for selecting the colors in different sources such as palettes, picker or custom palettes. You can also render the color value from control in three formats such as RGB, HSV and HEXCODE.
1414

1515
In this example, you can learn how to customize **ColorPicker** control in a category Application.
1616

17-
![](/js/ColorPicker/Getting-Started_images/Getting-Started_img1.png)
17+
![Getting Started with JavaScript Color Picker.](/js/ColorPicker/Getting-Started_images/javascript-color-picker-getting-started.png)
1818

1919
In the following sections you can learn, How to:
2020

@@ -79,7 +79,7 @@ Initialize **ColorPicker** element in **<script>** tag.
7979

8080
Run the above code to render the following output.
8181

82-
![](/js/ColorPicker/Getting-Started_images/Getting-Started_img2.png)
82+
![JavaScript Color Picker output.](/js/ColorPicker/Getting-Started_images/javascript-color-picker-output.png)
8383

8484
## Initialize the other widgets
8585

@@ -245,7 +245,7 @@ Add the following style section to align form fields.
245245

246246
Run the above code to render the following output.
247247

248-
![](/js/ColorPicker/Getting-Started_images/Getting-Started_img3.png)
248+
![JavaScript Color Picker output render.](/js/ColorPicker/Getting-Started_images/javascript-color-picker-output-render.png)
249249

250250
## Add value with Selected Color
251251

@@ -278,5 +278,5 @@ Initialize the click event for the button element in **<script>** tag.
278278

279279
The following screenshot illustrates the resultant output after you click **Add** button.
280280

281-
![](/js/ColorPicker/Getting-Started_images/Getting-Started_img4.png)
281+
![Javascript Color Picker resultant output.](/js/ColorPicker/Getting-Started_images/javascript-color-picker-resultant-output.png)
282282

js/DatePicker/Getting-Started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Getting started with JavaScript DatePicker Control | Syncfusion
3+
title: Getting Started with JavaScript DatePicker Control | Syncfusion
44
description: Learn here about getting started with Syncfusion JavaScript DatePicker control, its elements, and more.
55
platform: js
66
control: DatePicker
@@ -15,7 +15,7 @@ To get start with [DatePicker](https://www.syncfusion.com/javascript-ui-controls
1515

1616
CSS file
1717

18-
* [ej.web.all.min.css](http://cdn.syncfusion.com/{{ site.releaseversion }}/js/web/flat-azure/ej.web.all.min.css) – includes all widgets styles (To know more about theme refer [Theming in Essential JavaScript Component](https://help.syncfusion.com/js/theming-in-essential-javascript-components#))
18+
* [ej.web.all.min.css](http://cdn.syncfusion.com/{{ site.releaseversion }}/js/web/flat-azure/ej.web.all.min.css) – includes all widgets styles (To know more about theme refer [Theming in Essential JavaScript Component](https://help.syncfusion.com/js/theming-in-essential-javascript-components))
1919

2020
External script files
2121

@@ -50,7 +50,7 @@ You can make use of ‘ej.web.all.min.js’ file which encapsulates all ‘ej’
5050

5151
* [ej.web.all.min.js](http://cdn.syncfusion.com/{{ site.releaseversion }}/js/web/ej.web.all.min.js) – includes all web widgets.
5252

53-
N> In production, we highly recommend you to use our [custom script generator](https://help.syncfusion.com/js/custom-script-generator#) to create custom script file with required controls and its dependencies only. Also to reduce the file size further please use [GZip compression](https://web.dev/optimizing-content-efficiency-optimize-encoding-and-transfer/?hl=en#text-compression-with-gzip) in your server.
53+
N> In production, we highly recommend you to use our [custom script generator](https://help.syncfusion.com/js/custom-script-generator) to create custom script file with required controls and its dependencies only. Also to reduce the file size further please use [GZip compression](https://web.dev/optimizing-content-efficiency-optimize-encoding-and-transfer/?hl=en#text-compression-with-gzip) in your server.
5454

5555
A simple HTML file with required CSS and script reference added to create DatePicker
5656

js/DateTimePicker/Getting-Started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Getting-Started
4-
description: getting started
3+
title: Getting Started with JavaScript DateTime Picker Control | Syncfusion
4+
description: Learn here about getting started with Syncfusion Essential JavaScript DateTime Picker control, its elements, and more details.
55
platform: js
66
control: DateTimePicker
77
documentation: ug
88
api: /api/js/ejdatetimepicker
99
---
1010

11-
# Getting Started
11+
# Getting Started with JavaScript DateTime Picker
1212

1313
This section explains briefly about how to create a **DateTimePicker** in your application with **JavaScript**.
1414

@@ -18,7 +18,7 @@ The following screenshot illustrates the functionality of a **DateTimePicker** w
1818

1919

2020

21-
![](/js/DateTimePicker/Getting-Started_images/Getting-Started_img1.png)
21+
![JavaScript DateTime Picker getting started.](/js/DateTimePicker/Getting-Started_images/javascript-datetime-picker-functionality.png)
2222

2323
## Create DateTimePicker
2424

@@ -107,7 +107,7 @@ Initialize **DateTimePicker** in the script.
107107

108108
The following screenshot displays a **DateTimePicker** control.
109109

110-
![](/js/DateTimePicker/Getting-Started_images/Getting-Started_img.png)
110+
![JavaScript DateTime Picker screenshot display.](/js/DateTimePicker/Getting-Started_images/javascript-datetime-picker-screenshot.png)
111111

112112

113113
## Get / Set value
@@ -159,7 +159,7 @@ You can assign values after initialization in DateTimePicker (‘it helps to get
159159

160160
The following screenshot displays a **DateTimePicker** control with datetime value.
161161

162-
![](/js/DateTimePicker/Getting-Started_images/Getting-Started_img2.png)
162+
![Javascript DateTime Picker datetime value.](/js/DateTimePicker/Getting-Started_images/javascript-datetime-picker-value.png)
163163

164164

165165
## Set the Min and Max Date with Time Interval
@@ -183,5 +183,5 @@ In a real-time appointment scenario, the appointment is open only for a limited
183183

184184
The following screenshot shows the output for the above code example.
185185

186-
![](/js/DateTimePicker/Getting-Started_images/Getting-Started_img3.png)
186+
![Javascript DateTime Picker output screenshot.](/js/DateTimePicker/Getting-Started_images/javascript-datetime-picker-output-screenshot.png)
187187

js/Menu/Getting-Started.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
layout: post
3-
title: Getting-Started
4-
description: getting started
3+
title: Getting Started with JavaScript Menu Control | Syncfusion
4+
description: Learn here all about getting started with Syncfusion Essential JavaScript Menu component, it's elements and more details.
55
platform: js
66
control: Menu
77
documentation: ug
88
api: /api/js/ejmenu
99
---
1010

11-
# Getting Started
11+
# Getting Started with JavaScript Menu Control
1212

1313
This section explains briefly about how to create a **Menu** control in your application with **JavaScript**. The **Essential JavaScript** **Menu** supports displaying a **Menu** of list-out items. This **Menu** is based on ul-li hierarchy, where the sub-list items are rendered as the sub-menu items. The **Menu** control can also be rendered with local and remote data source. From the following guidelines, you can learn how to customize the **Menu** control for a website. In this case, **Syncfusion's** website **Menu** is discussed. The following screenshot displays the appearance of **Menu**.
1414

1515

16-
![](/js/Menu/Getting-Started_images/Getting-Started_img1.png)
16+
![Getting Started with JavaScript Menu.](/js/Menu/Getting-Started_images/javascript-menu-getting-started.png)
1717

1818
## Create a Menu
1919

@@ -76,7 +76,7 @@ Initialize the **Menu** control in <script> tag.
7676

7777
Output of the above steps.
7878

79-
![](/js/Menu/Getting-Started_images/Getting-Started_img2.png)
79+
![JavaScript Menu output steps.](/js/Menu/Getting-Started_images/javascript-menu-output-steps.png)
8080

8181
## Configure parent Menu items
8282

@@ -105,7 +105,7 @@ Every **Menu** has a list of **Menu** items with list of sub level **Menu** item
105105

106106
The following screenshot displays output.
107107

108-
![](/js/Menu/Getting-Started_images/Getting-Started_img3.png)
108+
![JavaScript Menu display output.](/js/Menu/Getting-Started_images/javascript-menu-display-output.png)
109109

110110
## Initialize sub-level Menu items
111111

@@ -155,7 +155,7 @@ Execute the above code example to render the following output.
155155

156156

157157

158-
![](/js/Menu/Getting-Started_images/Getting-Started_img4.png)
158+
![JavaScript Menu output render.](/js/Menu/Getting-Started_images/javascript-menu-output-render.png)
159159

160160
## Define multiple level Menu items
161161

@@ -209,7 +209,7 @@ The following screenshot is the output.
209209

210210

211211

212-
![](/js/Menu/Getting-Started_images/Getting-Started_img5.png)
212+
![JavaScript Menu output screenshot.](/js/Menu/Getting-Started_images/javascript-menu-output-screenshot.png)
213213

214214
By following the above mentioned steps, you can render the **Menu** control with multiple level sub items through online data source. You can simply customize the **Menu** widget in an efficient manner.
215215

js/Schedule/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Getting started with JavaScript Schedule Control | Syncfusion
2+
title: Getting Started with JavaScript Schedule Control | Syncfusion
33
description: Learn here about getting started with Syncfusion Essential JavaScript Schedule Control, its elements, and more.
44
platform: js
55
control: schedule
@@ -193,6 +193,6 @@ $(function() { // Document is ready
193193

194194
{% endhighlight %}
195195

196-
![JavaScript Schedule Mapper Fields](Getting-Started_images/Getting-Started_img1.png)
196+
![JavaScript Schedule Mapper Fields.](Getting-Started_images/javascript-scheduler-mapper-field.png)
197197

198198

js/SplitButton/Easy-customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,7 @@ Execute the above code to render the following output.
859859

860860
![Theme support in JavaScript Split Button](/js/SplitButton/Easy-customization_images/Easy-customization_img5.png)
861861

862-
# Enable/Disable SplitButton
862+
## Enable/Disable SplitButton
863863

864864
**SplitButton** provides you an option to enable /disable the ToggleButton. You can disable the ToggleButton by setting the “**enabled**” property value as **false**.
865865

js/TimePicker/Getting-Started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This section explains briefly about how to create a **TimePicker** in your appli
1414

1515
The following screenshot illustrates the functionality of a **TimePicker** with a time range of morning to evening. You can select a time to book a table, from a period of 9.00 AM to 6.00 PM for the current day. This avoids selecting a time prior to the morning.
1616

17-
![JavaScript TimePicker Getting Started](Getting-Started_images/Getting-Started_img1.png)
17+
![JavaScript TimePicker getting started.](Getting-Started_images/javascript-timepicker-getting-started.png)
1818

1919
## Create a TimePicker
2020

@@ -136,7 +136,7 @@ Add the following styles to show **Time Picker** control.
136136

137137
The following screenshot displays a **TimePicker** control.
138138

139-
![JavaScript TimePicker Create a TimePicker](Getting-Started_images/Getting-Started_img2.png)
139+
![JavaScript TimePicker Create a TimePicker.](Getting-Started_images/javascript-timepicker-create.png)
140140

141141
## Set the Min and Max Values
142142

@@ -169,7 +169,7 @@ In a real-time hotel table booking scenario, the booking is open only for a limi
169169

170170
The above code example displays the following output.
171171

172-
![JavaScript TimePicker Set the Min and Max Values](Getting-Started_images/Getting-Started_img3.png)
172+
![JavaScript TimePicker Set the Min and Max Values.](Getting-Started_images/javascript-timepicker-min-max.png)
173173

174174
## Set Time Interval
175175

@@ -206,7 +206,7 @@ Execute the above code to achieve the desired result. You can select the date an
206206

207207

208208

209-
![JavaScript TimePicker Set Time Interval](Getting-Started_images/Getting-Started_img4.png)
209+
![JavaScript TimePicker Set Time Interval.](Getting-Started_images/javascript-timepicker-interval.png)
210210

211211
## Display the Acknowledgment Message
212212

@@ -248,7 +248,7 @@ The following code example shows how to display the **acknowledgment message**.
248248

249249
The following screenshot displays the **acknowledgment message**.
250250

251-
![JavaScript TimePicker Display the Acknowledgment Message](Getting-Started_images/Getting-Started_img5.png)
251+
![JavaScript TimePicker Display the Acknowledgment Message.](Getting-Started_images/javascript-timepicker-message.png)
252252

253253
## Create Two TimePickers
254254

@@ -356,7 +356,7 @@ Initialize **Two TimePickers** using the following code example.
356356

357357
Execute the above code to achieve the desired result. By selecting the **Start Time** in the first **TimePicker**, you can select the End Time within the given range. This restricts you from selecting false time. This scenario is illustrated in the following screenshot.
358358

359-
![JavaScript TimePicker Create Two TimePickers](Getting-Started_images/Getting-Started_img6.png)
359+
![JavaScript TimePicker Create Two TimePickers.](Getting-Started_images/javascript-timepicker-create-two.png)
360360

361361

362362

0 commit comments

Comments
 (0)