New to Telerik ReportingStart a free 30-day trial

Toolbar Icons Overview

The Native Angular Report Viewer uses Kendo SVG Icons for the icons displayed in its toolbar. The default toolbar icons can be changed with any SVG icon from the Kendo SVG Icons List.

Setting a new Kendo SVG Icon on the toolbar

In the component with the report viewer, import the @progress/kendo-svg-icons package(it is automatically installed with the report viewer as peer dependency).

In the below example, we will demonstrate how to change the 'Stop Rendering' button's default icon:

HTML
<reporting-angular-viewer
	#viewer
	[reportSource]="{
		report: 'Report Catalog.trdx',
		parameters: {}
	}"
	serviceUrl="https://demos.telerik.com/reporting/api/reports"
	viewMode="interactive"
	[keepClientAlive]="true">
</reporting-angular-viewer>

Toolbar Icons List

IconPropertyPurpose
undoIconNavigate Backward
redoIconNavigate Forward
xCircleIconStops Report Rendering
arrowRotateCwIconRefreshes the Report Viewer
rewindIconReturns the Report to the first page
caretAltToLeftIconGoes to the previous page
caretAltToRightIconGoes to the next page
forwardIconNavigates to the last page of the report
fileTxtIconSets `interactive` viewmode
alignLeftIconSets `printPreview` viewmode
printIconOpens the browser's Print Dialog
downloadIconOpens the Export Dropdown
zoomOutIconZooms in the Report
zoomInIconZooms out the Report
searchIconOpen the Search Dialog
positionLeftIconShow/hide the Document Map
positionRightIconShow/hide the Parameters Area

See Also