Skip to content

Commit 1f6cb42

Browse files
Merge branch 'hotfix/hotfix-v27.1.48' into Es-892868-PortTooltip
2 parents e4ab7a1 + ed4e83b commit 1f6cb42

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

blazor/heatmap-chart/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This section describes the events that will be triggered for appropriate actions
1313

1414
## CellClicked
1515

16-
When you click on a HeatMap cell, the [CellClicked](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.HeatMap.HeatMapEvents.html#Syncfusion_Blazor_HeatMap_HeatMapEvents_CellClicked) event is triggered. More information about the arguments in this event can be found [here](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.HeatMap.CellClickEventArgs.html). When you right-click on a HeatMap cell, the `CellClicked` event will be triggered, and the `HasRightClicked` property in the event argument will be set to **true**.
16+
When you click on a HeatMap cell, the [CellClicked](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.HeatMap.HeatMapEvents.html#Syncfusion_Blazor_HeatMap_HeatMapEvents_CellClicked) event is triggered. More information about the arguments in this event can be found [here](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.HeatMap.CellClickEventArgs.html). When you right-click on a HeatMap cell, the `CellClicked` event will be triggered, and the [HasRightClicked](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.HeatMap.CellClickEventArgs.html#Syncfusion_Blazor_HeatMap_CellClickEventArgs_HasRightClicked) property in the event argument will be set to **true**.
1717

1818
The following example demonstrates how to use the `CellClicked` event. In this example, content will be displayed when you click on a HeatMap cell. Additionally, a dialog box showing the cell value, x-axis label, and y-axis label of the current cell will appear only when you right-click on the HeatMap cell.
1919

blazor/maps/markers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ The Maps can be initially scaled to the center value based on the marker distanc
467467

468468
## Disabling Zoom on Marker Click
469469

470-
Maps typically zoom in when you click or double-click on them. This zooming also occurs when you click on a marker. To prevent zooming when clicking on a marker, you can set `ZoomOnMarkerClick` to **false** in the `MapsZoomSettings`. This setting disables zooming specifically for marker clicks. By default, `ZoomOnMarkerClick` is set to **true**.
470+
Maps typically zoom in when you click or double-click on them. This zooming also occurs when you click on a marker. To prevent zooming when clicking on a marker, you can set [ZoomOnMarkerClick](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Maps.MapsZoomSettings.html#Syncfusion_Blazor_Maps_MapsZoomSettings_ZoomOnMarkerClick) to **false** in the [MapsZoomSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Maps.MapsZoomSettings.html). This setting disables zooming specifically for marker clicks. By default, `ZoomOnMarkerClick` is set to **true**.
471471

472472
```cshtml
473473
@using Syncfusion.Blazor.Maps
@@ -692,4 +692,4 @@ Tooltip is used to display more information about a marker on mouse over or touc
692692

693693
## See also
694694

695-
* [Add different types of markers](how-to/add-different-types-of-markers)
695+
* [Add different types of markers](how-to/add-different-types-of-markers)

blazor/maps/polygon.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,9 @@ Any HTML element can be rendered in the tooltip of the polygon shapes using the
268268

269269
## Changing a Polygon Shape to a Line
270270

271-
The rendered polygon shape can be changed to a line shape by setting the `ShapeType` property to **LineString**.
271+
The rendered polygon shape can be changed to a line shape by setting the [ShapeType](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Maps.MapsPolygon.html#Syncfusion_Blazor_Maps_MapsPolygon_ShapeType) property to [LineString](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Maps.PolygonShapeType.html#Syncfusion_Blazor_Maps_PolygonShapeType_LineString).
272272

273-
The following example demonstrates how to customize a line shape on an online map, display a tooltip for the line shape, highlight the line shape, and select the line shape on the map. In this example, latitude and longitude values are extracted from coordinates in a JSON file and assigned to the `Points` property within the `MapsPolygon` tag.
273+
The following example demonstrates how to customize a line shape on an online map, display a tooltip for the line shape, highlight the line shape, and select the line shape on the map. In this example, latitude and longitude values are extracted from coordinates in a JSON file and assigned to the [Points](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Maps.MapsPolygon.html#Syncfusion_Blazor_Maps_MapsPolygon_Points) property within the [MapsPolygon](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Maps.MapsPolygon.html) tag.
274274

275275
```cshtml
276276
@using Syncfusion.Blazor.Maps
@@ -343,6 +343,6 @@ The following example demonstrates how to customize a line shape on an online ma
343343
}
344344
}
345345
```
346-
> Note: Refer the content of the JSON file [line.json here](https://www.syncfusion.com/downloads/support/directtrac/general/ze/line140125043).
346+
> Note: Refer the content of the JSON file [line.json](https://www.syncfusion.com/downloads/support/directtrac/general/ze/line140125043) here.
347347
348348
![Blazor Maps with line shape](./images/Polygon/blazor-map-line-shape-on-tile-images.gif)

blazor/maps/user-interactions.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,9 @@ The HTML element can be rendered in the tooltip of the Maps using the [TooltipTe
10451045

10461046
### Changing duration in mobile devices
10471047

1048-
To change the duration of the tooltips in mobile devices, you can use the [Duration](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Maps.MapsTooltipSettings.html#Syncfusion_Blazor_Maps_MapsTooltipSettings_Duration) property in `MapsLayerTooltipSettings`. By default, this property is set to **2000** milliseconds. Setting the value to **0** will keep the tooltip visible indefinitely, removing it only on the next interaction. If it is greater than **0**, the tooltip will be removed after the specified time.
1048+
To change the duration of the tooltips on mobile devices, you can use the [Duration](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Maps.MapsTooltipSettings.html#Syncfusion_Blazor_Maps_MapsTooltipSettings_Duration) property in the tooltip settings for features such as layers, markers, bubbles, polygons, and more. By default, this property is set to **2000** milliseconds. Setting the value to **0** will keep the tooltip visible indefinitely, removing it only on the next interaction. If it is greater than **0**, the tooltip will be removed after the specified time.
1049+
1050+
In the following example, we demonstrate how to change the duration of the tooltip in mobile devices for layers in the Maps component.
10491051

10501052
```cshtml
10511053
@using Syncfusion.Blazor.Maps

0 commit comments

Comments
 (0)