Urgent! Jplot beginner question

Hello,

i have 2 questions.

1. as shown in the attachment, all yaxis tick values are stacked on top. what’s wrong?


		  yaxis:{
				renderer:$.jqplot.LogAxisRenderer,
				min:0, max: 1000, Ticks: [[0],[100],[200],[300],[400],[500],[600],[700],[800],[900],[1000]],
				tickOptions:{
					labelPosition: 'middle', 
					angle:-30
				},.....


2.

How do i change the legend series1 to my own subject?

:slight_smile:

hello,
i manage to solve the 2nd question regarding legend.
but 1st one still could not solved.

Both the problems are solved now.

question 1 solved as follows :

					//renderer:$.jqplot.LogAxisRenderer,
					min:0,// max:100,
					numberTicks:11,
					Ticks: [[0],[10],[20],[30],[40],[50],[60],[70],[80],[90],[100]],
					tickOptions:{
						labelPosition: 'middle', 
						angle:-30
					},

question 2 solved as follows :

labels:['John','Mark'],

ex:

        legend: {
				  show:true,
				  //location: 'ne',//top right within graph area.
				  placement: 'outside',
				  labels:<?php include("legend_labels.php"); ?>//['John','Mark'],