Skip to content

Commit 3f38bcf

Browse files
Integrated latest changes at 09-16-2025 12:48:15 PM
1 parent 94100b3 commit 3f38bcf

File tree

8 files changed

+15
-17
lines changed

8 files changed

+15
-17
lines changed

ej2-javascript/code-snippet/chart/working-with-data-cs11/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import { Button } from '@syncfusion/ej2-buttons';
1010

1111
Chart.Inject(LineSeries, Category, Tooltip);
1212

13-
(window as any).default = (): void => {
14-
1513
const chartData: any[] = [
1614
{ Month: 'January', Value: 19173 },
1715
{ Month: 'February', Value: 17726 },
@@ -91,4 +89,3 @@ Chart.Inject(LineSeries, Category, Tooltip);
9189
});
9290

9391
chart.appendTo('#element');
94-
};

ej2-javascript/code-snippet/diagram/connectors-segundo/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ import {
22
Diagram,
33
NodeModel,
44
ConnectorModel,
5-
HierarchicalTree,
65
ConnectorConstraints,
76
ConnectorEditing, UndoRedo
87
} from '@syncfusion/ej2-diagrams';
9-
Diagram.Inject(HierarchicalTree, ConnectorEditing, UndoRedo);
8+
Diagram.Inject(ConnectorEditing, UndoRedo);
109
let nodes: NodeModel[] = [
1110
{
1211
id: 'sourcenode',

ej2-javascript/code-snippet/diagram/symbol-palette-cs25/index.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function getFlowShapes() {
3030

3131
var checkBox = document.getElementById('showTooltip');
3232

33-
//Initializes the symbol palette
33+
// Initializes the symbol palette.
3434
var palette = new ej.diagrams.SymbolPalette({
3535
expandMode: 'Multiple',
3636
palettes: [
@@ -58,14 +58,15 @@ var palette = new ej.diagrams.SymbolPalette({
5858
symbolWidth: 70,
5959
symbolPreview: { height: 80, width: 80 },
6060
symbolMargin: { left: 15, right: 15, top: 15, bottom: 15 },
61-
//Enable/disable tooltip for the symbols
61+
62+
// Enable/disable tooltip for the symbols.
6263
getSymbolInfo: function (symbol) {
6364
return { showTooltip: checkBox.checked };
6465
},
6566
});
6667
palette.appendTo('#element');
6768

68-
document.getElementById('showTooltip').onclick = function (args) {
69+
document.getElementById('showTooltip').onclick = function () {
6970
palette.refresh();
7071
};
7172

ej2-javascript/code-snippet/diagram/symbol-palette-cs25/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ palette.appendTo('#element');
6262

6363
let tooltipCheckBox = document.getElementById('showTooltip');
6464
if (tooltipCheckBox) {
65-
tooltipCheckBox.onclick = function (args) {
65+
tooltipCheckBox.onclick = function () {
6666
palette.refresh();
6767
};
6868
}

ej2-javascript/code-snippet/stock-chart/working-with-data-cs2/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
var checked = false;
12
var stockChart = new ej.charts.StockChart({
23
series: [
34
{

ej2-javascript/diagram/js/connectors/connector-segments/multipleSegments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ This functionality ensures consistent editing behavior across all connector type
4141
The following example demonstrates undo and redo functionality for connector segments:
4242

4343
{% tabs %}
44-
{% highlight ts tabtitle="index.ts" %}
45-
{% include code-snippet/diagram/connectors-segundo/index.ts %}
44+
{% highlight ts tabtitle="index.js" %}
45+
{% include code-snippet/diagram/connectors-segundo/index.js %}
4646
{% endhighlight %}
4747
{% highlight html tabtitle="index.html" %}
4848
{% include code-snippet/diagram/connectors-segundo/index.html %}

ej2-javascript/diagram/ts/connectors/connector-segments/multipleSegments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Multiple segments in ##Platform_Name## Diagram control | Syncfusion®
4-
description: Learn here how to create connectors with multiple segments in Syncfusion® ##Platform_Name## Diagram control of Syncfusion Essential® JS 2 and more.
4+
description: Learn here how to create connectors with multiple Segments in Syncfusion® ##Platform_Name## Diagram control of Syncfusion Essential® JS 2 and more
55
platform: ej2-javascript
66
control: Multiple segments
77
publishingplatform: ##Platform_Name##

ej2-javascript/tooltip/ts/getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ domainurl: ##DomainURL##
1111

1212
# Getting started in ##Platform_Name## Tooltip control
1313

14-
This section briefly explains how to create a simple **Tooltip** control and configure its available functionalities in TypeScript, using Essential<sup style="font-size:70%">&reg;</sup> JS 2 [quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack-) seed repository.
14+
This section briefly explains how to create a simple **Tooltip** control and configure its available functionalities in TypeScript, using Essential<sup style="font-size:70%">&reg;</sup> JS 2 [quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack) seed repository.
1515

1616
> This application is integrated with the `webpack.config.js` configuration and uses the latest version of the [webpack-cli](https://webpack.js.org/api/cli/#commands). It requires node `v14.15.0` or higher. For more information about webpack and its features, refer to the [webpack documentation](https://webpack.js.org/guides/getting-started/).
1717
@@ -32,7 +32,7 @@ The following list of dependencies are required to use the Tooltip control in yo
3232

3333
## Set up development environment
3434

35-
Open the command prompt from the required directory, and run the following command to clone the Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2) quickstart project from [GitHub](https://github.com/SyncfusionExamples/ej2-quickstart-webpack-).
35+
Open the command prompt from the required directory, and run the following command to clone the Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2) quickstart project from [GitHub](https://github.com/SyncfusionExamples/ej2-quickstart-webpack).
3636

3737
{% tabs %}
3838
{% highlight bash tabtitle="CMD" %}
@@ -186,8 +186,8 @@ Refer to the following code example to create a Tooltip on multiple targets with
186186
187187
## See Also
188188

189-
[Positioning Tooltip](./position/)
189+
[Positioning Tooltip](./position)
190190

191-
[Tooltip Open Mode](./open-mode/)
191+
[Tooltip Open Mode](./open-mode)
192192

193-
[Customize the Tooltip](./customization/)
193+
[Customize the Tooltip](./customization)

0 commit comments

Comments
 (0)