Skip to content

Commit 861864c

Browse files
committed
version bump
1 parent b33ad8a commit 861864c

File tree

4 files changed

+45
-10
lines changed

4 files changed

+45
-10
lines changed

src/tikzplotlib/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.9.17"
1+
__version__ = "0.10.0"
Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
\begin{tikzpicture}
22

3-
\definecolor{gray069}{gray}{0.6901960784313725}
4-
53
\begin{axis}[
64
colorbar,
75
colorbar style={ylabel={}},
@@ -10,15 +8,31 @@
108
point meta min=0,
119
tick align=outside,
1210
tick pos=left,
13-
x grid style={gray069},
11+
x grid style={white!69.019608!black},
1412
xmin=-0.5, xmax=2.5,
1513
xtick style={color=black},
1614
y dir=reverse,
17-
y grid style={gray069},
15+
y grid style={white!69.019608!black},
1816
ymin=-0.5, ymax=2.5,
1917
ytick style={color=black}
2018
]
2119
\addplot graphics [includegraphics cmd=\pgfimage,xmin=-0.5, xmax=2.5, ymin=2.5, ymax=-0.5] {tmp-000.png};
2220
\end{axis}
2321

22+
\begin{axis}[
23+
axis y line=right,
24+
tick align=outside,
25+
xmin=0, xmax=1,
26+
xtick pos=left,
27+
y grid style={white!69.019608!black},
28+
ymin=0, ymax=1,
29+
ytick pos=right,
30+
ytick style={color=black},
31+
yticklabel style={anchor=west}
32+
]
33+
\path [draw=white, fill=white, line width=0.004pt]
34+
;
35+
\addplot graphics [includegraphics cmd=\pgfimage,xmin=0, xmax=1, ymin=0, ymax=1] {tmp-001.png};
36+
\end{axis}
37+
2438
\end{tikzpicture}

tests/test_hatch_reference.tex

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,14 @@
4545

4646
\nextgroupplot[
4747
legend cell align={left},
48-
legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=white!80!black},
48+
legend style={
49+
fill opacity=0.8,
50+
draw opacity=1,
51+
text opacity=1,
52+
at={(0.91,0.5)},
53+
anchor=east,
54+
draw=white!80!black
55+
},
4956
tick align=outside,
5057
tick pos=left,
5158
x grid style={white!69.019608!black},

tests/test_heat_reference.tex

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
\begin{tikzpicture}
22

3-
\definecolor{gray069}{gray}{0.6901960784313725}
4-
53
\begin{axis}[
64
colorbar,
75
colorbar style={ylabel={}},
@@ -10,14 +8,30 @@
108
point meta min=-100,
119
tick align=outside,
1210
tick pos=left,
13-
x grid style={gray069},
11+
x grid style={white!69.019608!black},
1412
xmin=-10, xmax=10,
1513
xtick style={color=black},
16-
y grid style={gray069},
14+
y grid style={white!69.019608!black},
1715
ymin=-10, ymax=10,
1816
ytick style={color=black}
1917
]
2018
\addplot graphics [includegraphics cmd=\pgfimage,xmin=-10, xmax=10, ymin=-10, ymax=10] {tmp-000.png};
2119
\end{axis}
2220

21+
\begin{axis}[
22+
axis y line=right,
23+
tick align=outside,
24+
xmin=0, xmax=1,
25+
xtick pos=left,
26+
y grid style={white!69.019608!black},
27+
ymin=-100, ymax=100,
28+
ytick pos=right,
29+
ytick style={color=black},
30+
yticklabel style={anchor=west}
31+
]
32+
\path [draw=white, fill=white, line width=0.004pt]
33+
;
34+
\addplot graphics [includegraphics cmd=\pgfimage,xmin=0, xmax=1, ymin=-100, ymax=100] {tmp-001.png};
35+
\end{axis}
36+
2337
\end{tikzpicture}

0 commit comments

Comments
 (0)