/**
  * Create the marker as a reverse pin point
  */
 function Image_Graph_Marker_ReversePinpoint()
 {
     parent::Image_Graph_Marker_Icon(dirname(__FILE__) . '/../Images/Icons/pinpointr.png');
     $this->setPointX(10);
     $this->setPointY(13);
 }
 /**
  * Create the marker as a reverse pin point
  */
 function __construct()
 {
     parent::__construct(dirname(__FILE__) . '/../Images/Icons/pinpointr.png');
     $this->setPointX(10);
     $this->setPointY(13);
 }
 /**
  * Create the marker as a pin point
  */
 function Image_Graph_Marker_Pinpoint()
 {
     parent::__construct(dirname(__FILE__) . '/../Images/Icons/pinpoint.png');
     $this->setPointX(0);
     $this->setPointY(13);
 }