i am using this code:
chart1.addPlot("grid", {
type: "Grid",
hMinorLines: true
});
how i can change the color of the grid, and the interval between each line ?
It is possible, right?
thanks

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Grid’s intervals between lines are determined by the tick step parameters you give to the axis. So if you want major horizontal lines/ticks for every integer, and minor horizontal lines for every .25, you can do:
To change the color of the grid lines, the only way I know of is to manipulate the theme you are using.