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 can try this code: Code:$(document).ready(function () { $('#jqChart').jqChart({ title: { text: 'Range Chart' }, animation: { duration: 1 }, series: [ { type: 'range', title: 'Series 1', fillStyle: ' rgba(215, 40, 40, 0.2)', data: [['A', 33, 43], ['B', 57, 62], ['C', 13, 30], ['D', 12, 40], ['E', 35, 70], ['F', 7, 30], ['G', 24, 30]] } ] }); }); Best Regards, Dragan Matek jqChart Inc.
|