You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Blazor-ApexCharts/Models/ApexChartOptions.cs
+21-14Lines changed: 21 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -1410,7 +1410,8 @@ public class Tools
1410
1410
publicList<ToolCustomIcon>CustomIcons{get;set;}
1411
1411
1412
1412
/// <summary>
1413
-
/// Show the download menu / hamburger icon in the toolbar. If you want to display a custom icon instead of hamburger icon, you can provide HTML string in this property.
1413
+
/// Show the download menu / hamburger icon in the toolbar.
1414
+
/// If you want to display a custom icon, you can provide HTML string in this property.
1414
1415
///
1415
1416
/// <code>
1416
1417
/// download: true
@@ -1420,40 +1421,46 @@ public class Tools
1420
1421
/// ApexCharts has built-in support to allow exporting the chart to popular image formats like PNG or SVG and also allows exporting the chart data to a CSV file.
1421
1422
/// By default, all XY charts have the toolbar enabled in them which has a hamburger icon at the top right corner. Clicking the hamburger icon opens a menu which has following options to download.
1422
1423
/// </summary>
1423
-
publicboolDownload{get;set;}=true;
1424
+
publicobjectDownload{get;set;}=true;
1424
1425
1425
1426
/// <summary>
1426
-
/// Show the panning icon in the toolbar.
1427
+
/// Show the panning icon in the toolbar.
1428
+
/// If you want to display a custom icon for Pan, you can provide HTML string in this property.
1427
1429
/// </summary>
1428
-
publicboolPan{get;set;}=true;
1430
+
publicobjectPan{get;set;}=true;
1429
1431
1430
1432
/// <summary>
1431
-
/// Reset the chart data to it's initial state after zommin/zoomout/panning. If you want to display a custom icon for reset, you can provide HTML string in this property.
1433
+
/// Reset the chart data to it's initial state after zommin/zoomout/panning.
1434
+
/// If you want to display a custom icon for reset, you can provide HTML string in this property.
1432
1435
/// </summary>
1433
-
publicboolReset{get;set;}=true;
1436
+
publicobjectReset{get;set;}=true;
1434
1437
1435
1438
/// <summary>
1436
-
/// Show the rectangle selection icon in the toolbar. If you want to display a custom icon for selection, you can provide HTML string in this property.
1439
+
/// Show the rectangle selection icon in the toolbar.
1440
+
/// If you want to display a custom icon for selection, you can provide HTML string in this property.
1437
1441
/// </summary>
1438
1442
/// <remarks>
1439
1443
/// Make sure to also enable <see cref="Chart.Selection"/> when showing the selection tool.
1440
1444
/// </remarks>
1441
-
publicboolSelection{get;set;}=true;
1445
+
publicobjectSelection{get;set;}=true;
1442
1446
1443
1447
/// <summary>
1444
-
/// Show the zoom icon which is used for zooming by dragging selection on the chart area. If you want to display a custom icon for zoom, you can provide HTML string in this property.
1448
+
/// Show the zoom icon which is used for zooming by dragging selection on the chart area.
1449
+
/// If you want to display a custom icon for zoom, you can provide HTML string in this property.
1445
1450
/// </summary>
1446
-
publicboolZoom{get;set;}=true;
1451
+
publicobjectZoom{get;set;}=true;
1447
1452
1448
1453
/// <summary>
1449
-
/// Show the zoom-in icon which zooms in 50% from the visible chart area. If you want to display a custom icon for zoom-in, you can provide HTML string in this property.
1454
+
/// Show the zoom-in icon which zooms in 50% from the visible chart area.
1455
+
/// If you want to display a custom icon for zoom-in, you can provide HTML string in this property.
1450
1456
/// </summary>
1451
-
publicboolZoomin{get;set;}=true;
1457
+
publicobjectZoomin{get;set;}=true;
1452
1458
1453
1459
/// <summary>
1454
-
/// Show the zoom-out icon which zooms out 50% from the visible chart area. If you want to display a custom icon for zoom-out, you can provide HTML string in this property.
1460
+
/// Show the zoom-out icon which zooms out 50% from the visible chart area.
1461
+
/// If you want to display a custom icon for zoom-out, you can provide HTML string in this property.
0 commit comments