bensiu
bensiu

Reputation: 25564

ExtJS chart flash file

When I implement LineChart is ExtJS it try to pull http://yui.yahooapis.com/2.8.2/build/charts/assets/charts.swf and my firewall does not allow it (no external connection allowed) - how I can deal with it ?

Can I have SWF file stored locally and what I should change to force reading from local ?

Upvotes: 1

Views: 1376

Answers (1)

Amol Katdare
Amol Katdare

Reputation: 6760

Yes. See this example
Specifically -

Ext.chart.Chart.CHART_URL = '../../resources/charts.swf';

(modify the relative path based on your setup)

Upvotes: 2

Related Questions