method ExChart.Draw ([From as Variant], [To as Variant], [CurBase as Variant], [CurTarget as Variant], [Reserved as Variant])
Draws the chart of exchange rates between two international currencies in a given interval.

TypeDescription
From as Variant A date expression that indicates the starting date.
To as Variant A date expression that indicates the ending date.
CurBase as Variant A string expression that indicates the base currency. The CurBase parameter should be composed by 3 letters, like "USD", "EUR". Check the Currencies property for complete list of currencies.
CurTarget as Variant A string expression that indicates the target currency. The TargetBase parameter should be composed by 3 letters, like "USD", "EUR". Check the Currencies property for complete list of currencies.
Reserved as Variant A string expression that indicates the type of query. Reserved for future versions.

The Draw method specifies the coordinates for the chart. If all of the parameter as missing, the control draws the exchange rates between "EUR"  and "USD" in the last 45 days. Use the Add method to add data manually.

The following sample draws the chart containing the exchange rates between "USD" and "ROL", in the period "Feb 1, 2001" and "Feb 1 2002":

ExChart1.Draw "2/1/2001", "2/1/2002", "ROL", "USD"