New to Telerik ReportingStart a free 30-day trial

appData Element Overview

The appData element specifies the configuration settings for the temporary application data stored on the machine.

Attributes and Elements

<appData> element

Attributespath – string attribute. Specifies the absolute path to the folder that will be used to store temp data, such as Map tiles cache and SQLite assemblies.
Parent elementTelerik.Reporting – specifies the root element of the Telerik Reporting configuration settings. Only one appData child element can be used inside the Telerik.Reporting root element.

Example

Windows

XML
<configuration>
	<configSections>
		<section name="Telerik.Reporting"
		         type="Telerik.Reporting.Configuration.ReportingConfigurationSection, Telerik.Reporting"
		         allowLocation="true"
		         allowDefinition="Everywhere"/>
	</configSections>
	<Telerik.Reporting>
		<appData path="C:\temp"/>
	</Telerik.Reporting>
</configuration>

Unix(Linux/Mac):

XML
<configuration>
	<configSections>
		<section name="Telerik.Reporting"
		         type="Telerik.Reporting.Configuration.ReportingConfigurationSection, Telerik.Reporting"
		         allowLocation="true"
		         allowDefinition="Everywhere"/>
	</configSections>
	<Telerik.Reporting>
		<appData path="/tmp/reportingAppData"/>
	</Telerik.Reporting>
</configuration>