Rank: Newbie
Groups: Registered
Joined: 9/4/2014(UTC) Posts: 6
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
It is not possible to have access to property "rangeSlider" in razor? can set in javascript but not razor Code: $(document).ready(function () { $('#jqChart').jqChart({ title: { text: 'Change Series' }, border: { strokeStyle: '#6ba851' }, legend: { visible: false }, tooltips: { type: 'shared' }, axes: [ { type: 'linear', location: 'bottom', extendRangeToOrigin: true, zoomEnabled: true, rangeSlider: { visible: false, breadth: 0 } }, { type: 'linear', location: 'left', extendRangeToOrigin: true, } ], series: [ { type: 'line', data: getRandomData() } ] }); });
|