Search found 7 matches

by Dr.Wackelzahn
Sun Nov 23, 2008 10:41 pm
Forum: General
Topic: pgfplots: How to use a non numeric x axis description?
Replies: 5
Views: 9869

pgfplots: How to use a non numeric x axis description?

Well, this one matches nearly, but doesn't work at all.

I have to display data not related by the time on the x axis (days, months, years, or else).

I can't find any example showing the x axis not related by time oder increasing numbers. But I have to use text. How can I get the Text written to ...
by Dr.Wackelzahn
Sun Nov 23, 2008 10:23 pm
Forum: General
Topic: pgfplots: How to use a non numeric x axis description?
Replies: 5
Views: 9869

Re: pgfplots: How to use a non numeric x axis description?

@localghost:
Please tell me the side number where you found a similar example in the pgfplots manual.
by Dr.Wackelzahn
Sun Nov 23, 2008 6:49 pm
Forum: General
Topic: pgfplots: How to use a non numeric x axis description?
Replies: 5
Views: 9869

pgfplots: How to use a non numeric x axis description?

Using the example:

\begin{tikzpicture}
\begin{axis}[
ybar interval=0.9,
x tick label as interval,
xmin=2003,xmax=2030,
ymin=0,ymax=140,
xticklabel={$\Alph{\tick}$},
xtick=data,
x tick label style={rotate=90,anchor=east,/pgf/number format/1000 sep=}
]
\addplot[draw=blue,fill=blue!40!white ...
by Dr.Wackelzahn
Sun Nov 23, 2008 3:09 pm
Forum: General
Topic: pgfplots: How to use a non numeric x axis description?
Replies: 5
Views: 9869

pgfplots: How to use a non numeric x axis description?

Hi there,
is it possible to draw a bar chart like shown below?
I couldn't find in the pgfplots manual.
Any idea?
Thank you!
by Dr.Wackelzahn
Mon Oct 27, 2008 11:07 pm
Forum: General
Topic: Align vertical text
Replies: 1
Views: 1621

Align vertical text

Hi there,
although I'm solving more and more problems I still face some of them. One out of it is the follwoing:

Within a tizkpicture I'd like to write a line vertically using \node like this:

\begin{tikzpicture}
\draw (-0.1cm,0cm) -- (-0.1cm,10cm); % Y-Achse (Ordinate)
\node[rotate=90, left ...
by Dr.Wackelzahn
Mon Oct 27, 2008 10:45 pm
Forum: General
Topic: Including a external file within "\foreach"
Replies: 2
Views: 2128

Re: Including a external file within "\foreach"

Thanks!
I'll give this workaround a try.
by Dr.Wackelzahn
Sun Oct 26, 2008 10:40 am
Forum: General
Topic: Including a external file within "\foreach"
Replies: 2
Views: 2128

Including a external file within "\foreach"

Hi,
is it possible to include an external file within a \foreach function?


\begin{tikzpicture}
\foreach \x/\y/\z/\beschriftung in {1/2/0.3/Test,
2/3/1/test}
{
\draw[fill=tab1] (\x cm,0cm) rectangle (\x cm +1 cm,\y cm);
};
\end{tikzpicture}


I'd like to put the Data lines "1/2/0.3/Test,2/3 ...