Index: Evidence/Edd/Edd.cc
===================================================================
--- Evidence/Edd/Edd.cc	(revision 151)
+++ Evidence/Edd/Edd.cc	(revision 152)
@@ -174,6 +174,9 @@
   Grid->attach(this);
   Legend = new QwtLegend();
+  Legend->setItemMode(QwtLegend::ClickableItem);
   insertLegend(Legend, QwtPlot::TopLegend);
 
+  connect(this, SIGNAL(legendClicked (QwtPlotItem *)), SLOT(LegendClicked(QwtPlotItem *)));
+  
   // Connect to DIM handler
   if (connect(Handler, SIGNAL(YEP(DimInfo *, int, QString, QByteArray, QString)), SLOT(Update(DimInfo *, int, QString, QByteArray, QString))) == false) {
@@ -409,7 +412,5 @@
 }
     
-//
 // Opening context menu
-//
 void Edd_Plot::contextMenuEvent(QContextMenuEvent *Event) {
 
@@ -417,4 +418,16 @@
 }
 
+// Drag&Drop method
+void Edd_Plot::LegendClicked(QwtPlotItem *Item) {
+
+  QDrag *Drag = new QDrag(this);
+  QMimeData *MimeData = new QMimeData;
+  MimeData->setText(Item->title().text().remove(".hist"));
+  Drag->setMimeData(MimeData);
+  Drag->exec();
+}
+
+
+// Zoom completely out
 void Edd_Plot::MenuZoomOut() {
 
@@ -648,10 +661,10 @@
   Graph = new Edd_Plot();
   for (int i=0; i<18; i++) {
-    Text = Text.sprintf("BIAS/VOLT/ID00/00-%.3d",i);
+    Text = Text.sprintf("Bias/VOLT/ID00/00-%.3d",i);
     Value = new Edd_Indicator(Text);
     BiasLayout->addWidget(Value, i%9+1, 0+i/9, 1, 1);
     Graph->AddService(Text);
 
-    Text = Text.sprintf("BIAS/VOLT/ID00/01-%.3d",i);
+    Text = Text.sprintf("Bias/VOLT/ID00/01-%.3d",i);
     Value = new Edd_Indicator(Text);
     BiasLayout->addWidget(Value, i%9+1, 2+i/9, 1, 1);
@@ -660,9 +673,9 @@
 
   BiasLayout->addWidget(Graph, 0, 4, 12, 3);
-  Value = new Edd_Indicator("BIAS/Status");
+  Value = new Edd_Indicator("Bias/Status");
   Value->setMaximumWidth(200);
   BiasLayout->addWidget(Value, 0, 0, 1, 3);      
 
-  Textout = new Edd_Textout("BIAS/Textout");
+  Textout = new Edd_Textout("Bias/Textout");
   Textout->setFixedWidth(400);
   BiasLayout->addWidget(Textout, 10, 0, 4, 4);      
Index: Evidence/Edd/Edd.h
===================================================================
--- Evidence/Edd/Edd.h	(revision 151)
+++ Evidence/Edd/Edd.h	(revision 152)
@@ -96,5 +96,6 @@
 
     void HandleZoom(const QwtDoubleRect &);
-    void contextMenuEvent(QContextMenuEvent *);    
+    void contextMenuEvent(QContextMenuEvent *);
+	void LegendClicked(QwtPlotItem *);
     void MenuZoomOut();
     void MenuSingleTrace();        
