Hello everyone,
With the plugin "DIAGRAM" I build a drawing program. It works great, but I have one problem:
The generated buttons ( see screenshot ) only show the symbol, the included symbols (red_man.gif + blue_man.gif ) are clearly visible, but the added symbols are not. How do I make the symbols in buttons more visible? Is it possible to make a text visible when you move the mouse over the buttons ?
i use this code :
`$this->settings["width"] = 1200; // diagram width in pixels
$this->settings["height"] = 800; // diagram height in pixels
// standard figures: true - show button, false - hide
$this->settings["rectangle"] = true;
$this->settings["line"] = true;
$this->settings["circle"] = false;
$this->settings["rhombus"] = false;
// default border color for standard figures
$this->settings["border"] = "#555555";
// You can create custom buttons. To do this uncomment the following lines.
// For each button specify the image source, width and height in parameter $this->settings["image_source"].
$this->settings["image_source"] = array (
array("image"=>"images/red_man.gif","width"=>50, "height"=>100),
array("image"=>"images/blue_man.gif","width"=>50, "height"=>100),
array("image"=>"images/Dubbelpolige kruisschakelaar.bmp","width"=>37.5, "height"=>75),
array("image"=>"images/Vertikale lijn 100X1.bmp","width"=>37.5, "height"=>75),
array("image"=>"images/hor_lijn.png","width"=>7.5, "height"=>675),
array("image"=>"images/Automaat 16 Ampere.bmp","width"=>60, "height"=>1500)
);`