Wie kann ich eine Positionierung von Balken in pgfplots erreichen.
Ich habe folgende beiden "Probleme".
1) Die "minor y ticks" werden nicht angezeigt.
2) Ich möchte gerne die dickeren, farbigen Balken so positionieren, dass diese unterhalb der schwarzen Linie sind, jedoch gleichmässig übereinander verteilt. Momentan positioniere ich diese vertikal mit der y-Koordinate. Da die Skala aber logaritmisch ist, überlappen diese sich leider. Dies bedeutet, dass ich die Balken bzgl. des Anfangs und des Endes mit der x-kkordinate x-Koordinate (Datum) bestimmen will, die vertikale Positioierung irgendwie "relativ" zum y-min Wert sein soll. Gäbe es noch eine andere Art der vertikalen Positionierung als die über y-Koordinaten?
\documentclass[tikz=true]{standalone}
\usepackage{luatextra}
\usepackage{fontspec}
\setmainfont{Arial}
\setsansfont{Arial}
\setmonofont{Consolas}
\defaultfontfeatures{Ligatures=TeX}
\usepackage{pgfplots}
\usepgfplotslibrary{dateplot}
\usetikzlibrary{shapes,arrows, patterns}
\pgfplotsset{compat=newest}
\begin{document}
\newcommand\BoxWidth{5pt}
\begin{tikzpicture}
\newcommand\PosNode{0.02}
\begin{semilogyaxis}[
% ----- Allgemein -----
width = \textwidth,
height = 5cm,
enlargelimits =false,
date coordinates in = x,
date ZERO = {2015-08-01 00:00},
every axis plot/.append style={const plot, mark=\empty},
%
%----- x Achse -----
xmin = 2015-08-09 00:00,
xmax = 2015-09-13 00:00,
try min ticks=30,
major x tick style={black},
minor x tick num=3,
minor x tick style={draw=none},
xmajorgrids,
xminorgrids,
xticklabel style = {anchor=east, rotate=90, font=\tiny},
%
%----- y-Achse -----
ymin=1E-8,
ymax=1E-4,
ylabel = {CFDF},
major y tick style={black},
minor y tick style={black},
]
\addplot[black, line width=1.5pt] coordinates {
(2015-08-09 08:00, 1.00E-6) % POS 0
(2015-08-10 15:00, 1.50E-6) % POS 2-3
(2015-08-11 03:00, 2.00E-6) % POS 4-5
(2015-08-11 06:00, 2.50E-6) % POS 6
(2015-08-11 18:00, 3.00E-6) % POS 7-9
(2015-08-13 03:00, 3.50E-6) % POS 10
(2015-09-05 12:00, 4.00E-6) % POS 11-12
(2015-09-07 04:00, 4.50E-6) % POS 13
(2015-09-10 09:00, 5.00E-6) % POS 14-16
(2015-09-10 15:00, 5.50E-6) % POS 17-18
(2015-09-11 00:00, 6.00E-6) % POS 19-20
(2015-09-13 00:00, 1.00E-6) % POS 19-20
};
% CRD
\addplot[red, line width=\BoxWidth] coordinates {
(2015-08-11 06:00, 1E-7)
(2015-09-01 05:00, 1E-7) }
node[pos=\PosNode, left] {\tiny CRD};
% SEHR
\addplot[blue, line width=\BoxWidth] coordinates {
(2015-08-12 00:00, 2E-7)
(2015-09-02 12:00, 2E-7) }
node[pos=\PosNode, left] {\tiny SEHR};
% Div. 21
\addplot[green, line width=\BoxWidth] coordinates {
(2015-08-13 03:00, 3E-7)
(2015-08-23 07:00, 3E-7) }
node[pos=\PosNode, left] {\tiny Div.21};
% Div. 11
\addplot[orange, line width=\BoxWidth] coordinates {
(2015-08-23 07:00, 4E-7)
(2015-09-04 22:00, 4E-7) }
node[pos=\PosNode, left] {\tiny Div.11};
\end{semilogyaxis}
\end{tikzpicture}
\end{document}