I have a list of data as .dat file in my dropbox.
And I have plot with ListContourPlot by this way:
j132 = Import["paraloop_8.dat"]; lista131 = Table[{j132[[i, 1]], j132[[i, 2]], j132[[i, 8]]}, {i, 1, Length[j132]}]; newStyle[x_] := x /. l_Line :> Sequence[Opacity[1], Thick, Red, l] ListContourPlot[lista131, Contours -> 50, PlotLegends -> Automatic, FrameStyle -> FontSize -> 14, ImageSize -> 350] /. Tooltip[x_, 0] :> Tooltip[newStyle[x], 0] This way I can color with red the contour with value equal zero, but, if I want colorize the contour with another value, for exemple, 0.018 I can't. What can be wrong?


0.018is not one of the 50 automatically generated contour lines. $\endgroup$