Rank: Advanced Member
Groups: Administrators, DataVizJavaScript, jQueryChart, jQueryDV, MvcChart, Registered Joined: 1/3/2011(UTC) Posts: 483
Thanks: 0 times Was thanked: 87 time(s) in 87 post(s)
|
Hi, You need to call $("#jqChart").resizable(); within the $(document).ready(function () {...} block. Here is the code: Code: $(document).ready(function () { $('#jqChart').jqChart({ title: { text: 'Axis Settings' }, axes: [ { location: 'left', minimum: 10, maximum: 100, interval: 10 } ], series: [ { type: 'column', data: [['a', 70], ['b', 40], ['c', 85], ['d', 50], ['e', 25], ['f', 40]] } ] });
$('#jqChart').resizable(); }); Best Regards, Dragan Matek jqChart Inc.
|