私の以前の投稿hereに基づいて、この方法を使用して好きなように行にラベルを付けることができます。ラベル付け後、動的コンテンツのないプロットは に設定されていることがわかりますplainplot
。
各行を自己ラベル付けボタンに変えることで機能します。labels
さまざまなラベルに合わせて変更できます。
l = {10, 20, 30, 40};
y[x_, s_] := 4 x/s + 2
plot = Plot[Evaluate@Table[y[x, u], {u, l}], {x, 0, 100},
PlotLabel -> Style["y vs X ", FontSize -> 18]];
pos = Position[plot, _Line];
Array[(line[#] = plot[[Sequence @@ pos[[#]]]]) &, Length@l];
AddLabel[label_] := Module[{},
AppendTo[plot[[1]], Inset[Framed[label, Background -> White], pt]];
(* Removing buttons for final plot *)
plainplot = plot;
Array[
(plainplot[[Sequence @@ pos[[#]]]] =
plainplot[[Sequence @@ Append[pos[[#]], 1]]]) &, Length@l]]
labels = ToString /@ l;
Array[
(plot[[Sequence @@ pos[[#]]]] =
Button[line[#], AddLabel[labels[[#]]]]) &, Length@l];
Dynamic[EventHandler[plot,
"MouseDown" :> (pt = MousePosition["Graphics"])]]