New to Telerik ReportingStart a free 30-day trial

Device Information Settings for the ImageInteractive Rendering Format

The following table lists the device information settings for rendering in IMAGEInteractive format.

Available ImageInteractive Device Information Settings

The names of the properties in Device Information Settings are Case-Sensitive.

NameTypeDescription
OutputFormatStringDefines the output format of the produced image. Supported formats are: BMP, EMF, EMFPLUS, GIF, JPEG, PNG.
TextRenderingHintstringSets the rendering mode for text using a TextRenderingHint enumeration member. The default value depends on the machine settings - if it has ClearType enabled, then ClearTypeGridFit will be used. Otherwise the rendering algorithm will use AntiAliasGridFit hinting. If text rendering hinting is not supported, the SystemDefault value will be used.

For a detailed example of how to set up the settings for a rendering extension, see extensions Element.

Example

XML-based configuration file:

XML
<configuration>
	<configSections>
		<section name="Telerik.Reporting" type="Telerik.Reporting.Configuration.ReportingConfigurationSection, Telerik.Reporting" allowLocation="true" allowDefinition="Everywhere" />
	</configSections>
	<Telerik.Reporting>
		<extensions>
			<render>
				<extension name="IMAGEInteractive">
					<parameters>
						<parameter name="OutputFormat" value="PNG"/>
						<parameter name="TextRenderingHint" value="AntiAliasGridFit"/>
					</parameters>
				</extension>
			</render>
		</extensions>
	</Telerik.Reporting>
</configuration>

See Also