Returns the last saved (temporary) filename when using TempChart 'file' option, TempChart only. Use the PostRender event to access the property. The property may also be used to set a personal choice of temporary filename. To use it in this way, please set the property in the WebForm page's PreRender event.
public String LastFileName {get; set;}

Example

This example shows where to set the LastFileName property:

protected void Page_PreRender(object sender, System.EventArgs e)
{
   WebChart1.LastFileName = "myfile.png";
}

See Also

WebChart Class | WebChart Members | Steema.TeeChart.Web Namespace