Rank: Administration
Groups: Administrators, Moderator, Registered Joined: 11/5/2012(UTC) Posts: 131
Thanks: 0 times Was thanked: 15 time(s) in 15 post(s)
|
Hi, Unfortunately our documentation is uncompleted, so please ask us about any issues you have. You need to specify the location and type options of your axis. In your case your code should look like: Code:axes: [ { location : 'left', type : 'linear', name: 'y1', visible: false, strokeStyle: '#FFFFFF', labels: { visible: false, strokeStyle: '#FFFFFF', }, majorGridLines: { visible: false }, majorTickMarks: { visible: false } }, You can hide the y-axis with: Code:axes: [ { type: 'linear', location: 'left', labels: { visible: false }, majorTickMarks: { visible: false }, majorGridLines: { visible: false }, … }, Best, Ivan Petrov jqChart Inc.
|