Split all files mith multiple classes into multiple files

This commit is contained in:
2022-11-25 21:54:30 +01:00
parent 94deb06f52
commit f2444f0247
20 changed files with 3285 additions and 0 deletions

27
src/GraphStyleLine.php Normal file
View File

@@ -0,0 +1,27 @@
<?php
/** DomFramework
* @package domframework
* @author Dominique Fournier <dominique@fournier38.fr>
* @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";
}
}