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

0 commit comments

Comments
 (0)