<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
	"http://www.w3.org/TR/html4/strict.dtd">
<html>
	<head>
		<title>Chart Resizing Modes</title>
		<meta http-equiv="content-type" content="text/html; charset=utf-8">
		<script type="text/javascript" language="javascript" src="./../js/AnyChartStock.js?v=1.9.0r9317"></script>
		<script type="text/javascript" language="javascript" src="./js/jquery.min.js"></script>
		<!-- chart size -->
		<style type="text/css">
			#chartContainer {
				position: absolute;
				left: 10px;
				right: 300px;
				top: 10px;
				bottom: 10px;
				
				border: 1px solid black;
			}
		</style>
		<script type="text/javascript" language="javascript">
			// Creating new chart object.		
			var chart = new AnyChartStock("./../swf/AnyChartStock.swf?v=1.9.0r9317", "./../swf/Preloader.swf?v=1.9.0r9317");
			// Setting XML config file.			
			chart.setXMLFile("config.xml");
			// Writing the flash object into the page DOM.
			chart.write("chartContainer");
			
			// Apply resize settings
			function applyResizingSettings() {
				chart.removeFlashObject(); // remove Flash object, leave chart object
				
				onScaleModeChange(); // update inputs
				
				// update resizing settings
				chart.resizing.mode = $("#scaleMode").val(); // set resize mode

				chart.resizing.baseWidth = $("#baseWidth").val(); // base width
				chart.resizing.baseHeight = $("#baseHeight").val(); // base height
				chart.resizing.minWidth = $("#minWidth").val(); // min width
				chart.resizing.minHeight = $("#minHeight").val(); // min height
				chart.resizing.maxWidth = $("#maxWidth").val(); // max width
				chart.resizing.maxHeight = $("#maxHeight").val(); // max height
				
				chart.write("chartContainer"); // write Flash object again
			}
			
			// update inputs depending on the mode
			function onScaleModeChange() {
				var mode = document.getElementById("scaleMode").value; // get mode
				
				// change inputs depending on the mode
				switch (mode.toLowerCase()) {
					case "recalculate":
						$("#baseWidth").attr("disabled", "true");
						$("#baseHeight").attr("disabled", "true");
						$("#minWidth").attr("disabled", "true");
						$("#minHeight").attr("disabled", "true");
						$("#maxWidth").attr("disabled", "true");
						$("#maxHeight").attr("disabled", "true");
						break;
					case "stretch":
					case "fit":
					case "recalculatebyproportions":
						$("#baseWidth").removeAttr("disabled");
						$("#baseHeight").removeAttr("disabled");
						$("#minWidth").attr("disabled", "true");
						$("#minHeight").attr("disabled", "true");
						$("#maxWidth").attr("disabled", "true");
						$("#maxHeight").attr("disabled", "true");
						break;
					case "combined":
						$("#baseWidth").attr("disabled", "true");
						$("#baseHeight").attr("disabled", "true");
						$("#minWidth").removeAttr("disabled");
						$("#minHeight").removeAttr("disabled");
						$("#maxWidth").removeAttr("disabled");
						$("#maxHeight").removeAttr("disabled");
						break;
				}
			}
			
			//---------------------------------------------------------------------------------------------------
			//		html events binding
			//---------------------------------------------------------------------------------------------------
			
			$(function() {
				$("#scaleMode").change(applyResizingSettings);
				$("#baseWidth").change(applyResizingSettings);
				$("#baseHeight").change(applyResizingSettings);
				
				$("#minWidth").change(applyResizingSettings);
				$("#minHeight").change(applyResizingSettings);
				$("#maxWidth").change(applyResizingSettings);
				$("#maxHeight").change(applyResizingSettings);
			});
		</script>
		<!-- style settings -->
		<style type="text/css">
			table.settings {
				border-style: solid;
				border-width: 1px;
				border-color: #D0CDC9;
				width: 280px;
				border-collapse:collapse;
				position: absolute;
				
				right: 10px;
				top: 10px;
			}

			table.settings tr th {
				font:normal 60% Verdana;
				background-color: #DCD9D5;
				font-weight:bold;
				padding-bottom:5px;
				padding-top:5px;
				padding-left:10px;
				padding-right:10px;
				text-align:left;
			}
			table.settings tr td {
				background-color: #F8F4F0;
				font:normal 70% Verdana;
				padding-bottom:2px;
				padding-top:2px;
				padding-left:10px;
				padding-right:10px;
				text-align:left;	
			}
			#chartWidth, #chartHeight, #baseWidth, #baseHeight, #minWidth, #minHeight, #maxWidth, #maxHeight { width: 40px;}
		</style>
	</head>
	<body>
		<div id="chartContainer"><!-- Chart Container --></div>
		<table class="settings" cellpadding='0' cellspacing='0'>
			<tr>
				<td >Mode:</td>
				<td><select id="scaleMode" autocomplete="off">
						<option value="Recalculate" selected="true">Recalculate</option>
						<option value="RecalculateByProportions">RecalculateByProportions</option>
						<option value="Stretch">Stretch</option>
						<option value="Fit">Fit</option>
						<option value="Combined">Combined</option>
					</select>
				</td>
			<tr>
			<tr><td>Base size: </td><td><input type="text" id="baseWidth" disabled="true" value="600" autocomplete="off" /> x <input type="text" id="baseHeight" disabled="true" value="300" autocomplete="off" /></td></tr>
			<tr><td>Min size: </td><td><input type="text" id="minWidth" disabled="true" value="200" autocomplete="off" /> x <input type="text" id="minHeight" disabled="true" value="100" autocomplete="off" /></td></tr>
			<tr><td>Max size: </td><td><input type="text" id="maxWidth" disabled="true" value="900" autocomplete="off" /> x <input type="text" id="maxHeight" disabled="true" value="450" autocomplete="off" /></td></tr>
			<tr><td colspan="2"><strong>Resize this window to see selected resizing mode behavior in action</strong></td></tr>
		</table>
	</body>
</html>

Sample Description

How to use this sample?

Use controls to the right of the chart to change resizing modes and configure them.

to top

How it works

Resizing modes can be switched and configured using resizing object. All resizing settings described in Chart Resizing Modes article are available in this object.

Note: you should set resizing settings before writing Flash object (using write method) and if you need to switch resizing mode dynamically you have to remove Flash object first (using removeFlashObject method, see more about removing in Removing Sample) and then write it again - only in this case resizing settings are applied.

to top

AnyChartStock JavaScript API

This sample uses the following methods, properties and events from AnyChartStock JavaScript API:

Item Type Description
resizing Property (Object) Chart resizing settings.
removeFlashObject Method Removes AnyChart Stock Flash Object from HTML DOM.
setXMLFile Method Sets chart XML configuration file path.
write Method Adds the chart to HTML DOM as a child of the specified container.

to top

Prerequisites

This section lists all configuration, data and auxiliary files required for this sample.

Configuration file

CSV files

SWF files

  • AnyChartStock.swf - AnyChart Stock component.
  • Preloader.swf - AnyChart Stock helper component that loads the main component (AnyChartStock.swf) and displays loading progress.

JavaScript Libraries

  • jquery.min.js - A JavaScript jQuery library. Learn more at jQuery official site.
  • AnyChartStock.js - A JavaScript library that is shipped with AnyChart Stock component. It is used to embed the component into HTML DOM and to comunicate with the Flash part.

to top

The information contained in this website is for general information purposes only. All sample data provided on this site is for demonstration purposes only.

The logos and names of other companies and products mentioned on this site are copyright and/or trademarks of their respective owners.

The content on this site, including news, quotes, data and other information, is provided for your personal information only, and is intended for demonstration purposes only. Content on this site is not appropriate for the purposes of making a decision to carry out a transaction or trade. Nor does it provide any form of advice (investment, tax, legal) amounting to investment advice, or make any recommendations regarding particular financial instruments, investments or products.

In no event AnyChart will be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of this website.

This site may point to other Internet sites that may be of interest to you, however AnyChart does not endorse or take responsibility for the content on such other sites

Market data and News provided by and copyright RediNews, Incorporated.