Chart Properties

Chart Display Adapter Settings

Controls the settings of the rendered chart, not the chart type.

Example:

<maps path="maps/" path_type="RelativeToHTML" />

            <locale>

                        <date_time_format>

                                    <format>%HH:%mm:%ss %dd/%MM/%yyyy</format>

                        </date_time_format>

            </locale>

Chart Height by Data Count

(Introduced in v11.1) The number of pixels to increase the chart height based upon the amount of data depicted in the chart.

In previous releases, once the chart size had been identified using the component’s Flash Setup property, the width was locked in place regardless of how much data was shown. As the amount of data increased over time, the chart would get correspondingly smaller. This property helps resolve that issue.

 

Chart Width by Data Count

(Introduced in v11.1) The number of pixels to increase the chart width based upon the amount of data depicted in the chart.

In previous releases, once the chart size had been identified using the component’s Flash Setup property, the width was locked in place regardless of how much data was shown. As the amount of data increased over time, the chart would get correspondingly smaller. This property helps resolve that issue.

Extra Chart Data

Extra XML that will be placed after the beginning <AnyChart> element.

Flash Setup

Controls the Flash setup of the chart.

bgColor

The background color to be applied

PreLoader

PreLoader is a file that makes loading charts more comfortable with a slow Internet connection and provides some useful customization settings.

initText

The text to display while AnyChart is initializing.

Default: Initializing…

noDataText

The text to display when AnyChart gets a chart without data.

Default: No Data

preloadInitText

The text to display while PreLoader is initializing.

Default: Initializing…

preloaderLoadingText

The text to display while the AnyChart.swf is loading.

Default: Loading…

resourcesLoadingText

The text to display while AnyChart is loading resources such as images.

Default: Loading resources…

templatesLoadingText

The text to display while AnyChart is loading chart templates.

Default: Loading templates…

waitingForDataText

The text to display when AnyChart does not get a data sources (neither XMLFile or XMLText is set).

Default: Waiting for data…

wMode

The html embedding mode. Possible values include:

    window

    opaque

    transparent

Width

The width of the chart.

Height

The height of the chart.

 

Example XML:

<Flash>

<Setup>

<Width>600</Width>

<Height>300</Height>

<WMode>Transparent</WMode>

</Setup>

</Flash>

Full Chart XML

Contains all AnyChart XML versus separate properties. Requires Data Settings, and all Data and Pointer elements must be removed.

Example:

<anychart>

                <settings>

                                <context_menu save_as_image="false" version_info="false" print_chart="false" about_anychart="false" save_as_pdf="false" />

                </settings>

                <charts>

                                <chart plot_type="CategorizedHorizontal" enable_animation="True">

                                                <data_plot_settings enable_3d_mode="true" />

                                                <chart_settings>

                                                                <title>

                                                                                <text>Milestone Tasks</text>

                                                                </title>

                                                </chart_settings>

                                </chart>

                </charts>

</anychart>