Skip to content

Commit 10820b6

Browse files
Integrated latest changes at 11-26-2025 10:30:04 AM
1 parent bb81e16 commit 10820b6

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

ej2-javascript/chart/selection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,8 @@ You can able to select a point or series programmatically on a chart using [`sel
226226

227227
You can able to select a point or series through on legend using [`toggleVisibility`](../api/chart/legendSettingsModel/#toggleVisibility) property. Also, use [`enableHighlight`](../api/chart/legendSettings/#enableHighlight) property for highlighting the series through legend.
228228

229+
>When [`highlightMode`](https://ej2.syncfusion.com/documentation/api/chart/highlightmode) is set to 'Series', 'Cluster' or 'Point', legend highlighting will still occur even when [`enableHighlight`](https://ej2.syncfusion.com/documentation/api/chart/legendsettings#enablehighlight) is set to false. This is because, the [`highlightMode`](https://ej2.syncfusion.com/documentation/api/chart/highlightmode) takes precedence, so hovering over legend items will trigger highlighting of the corresponding series regardless of the legend’s [`enableHighlight`](https://ej2.syncfusion.com/documentation/api/chart/legendsettings#enablehighlight) setting.
230+
229231
{% if page.publishingplatform == "typescript" %}
230232

231233
{% tabs %}

ej2-javascript/code-snippet/rich-text-editor/paste-cleanup-cs1/index.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/**
2-
* Rich Text Editor Paste Cleanup Sample
3-
*/
4-
import { detach } from '@syncfusion/ej2-base';
5-
61
var editor = new ej.richtexteditor.RichTextEditor({
72
value: ` <p>Rich Text Editor is a WYSIWYG editing control which will reduce the effort for users while trying to express their formatting word content as HTML or Markdown format.</p>
83
<p><b>Paste Cleanup properties:</b></p>
@@ -48,7 +43,7 @@ function onAfterPasteCleanup(args) {
4843
'.pasteContent_Img'
4944
);
5045
if (pasteCleanupImage) {
51-
detach(pasteCleanupImage);
46+
ej.base.detach(pasteCleanupImage);
5247
args.value = divElement.innerHTML;
5348
}
5449
}

0 commit comments

Comments
 (0)