* @license BSD */ namespace Domframework; /** The graphStyleLine : draw a graph with line */ class GraphStyleLine extends GraphStyleLinePoints { /** The point color background. To hide the points, choose "transparent" */ protected $pointBgcolor = "transparent"; /** The point color border */ protected $pointColor = "transparent"; /** Return the name of the style */ public function name() { return "line"; } }