How to set dotted line in Jpgraph with php

306 Views Asked by At

I want to set dotted line in jpgraph with php, but for this moment I set only standart line with this code:

  $lineplot2 = new LinePlot($pro1, $pro1X);
  $lineplot2->SetStyle("solid");
  $lineplot2->SetWeight(3);
  $lineplot2->SetColor('red');

Can I get example how to set dotted or broken line .. ?

1

There are 1 best solutions below

0
Tommy Brettschneider On BEST ANSWER