This commit is contained in:
Thomas Breloff 2015-09-10 15:05:12 -04:00
parent 042ccdc298
commit f25baba217
11 changed files with 4 additions and 4 deletions

View File

@ -27,13 +27,13 @@ const examples = PlotExample[
:(plot(0:0.01:4π, [sin,cos]))), :(plot(0:0.01:4π, [sin,cos]))),
PlotExample("Global", PlotExample("Global",
"Change the guides/background without a separate call.", "Change the guides/background without a separate call.",
:(plot(rand(10); title="TITLE", xlabel="XLABEL", ylabel="YLABEL", background_color = RGB(0.5, 0.5, 0.5)))), :(plot(rand(10); title="TITLE", xlabel="XLABEL", ylabel="YLABEL", background_color = RGB(0.5,0.5,0.5)))),
PlotExample("Vectors", PlotExample("Vectors",
"Plot multiple series with different numbers of points.", "Plot multiple series with different numbers of points.",
:(plot(Vector[rand(10), rand(20)]; marker=:ellipse, markersize=8))), :(plot(Vector[rand(10), rand(20)]; marker=:ellipse, markersize=8))),
PlotExample("Vectors w/ pluralized args", PlotExample("Vectors w/ pluralized args",
"Mix arguments that apply to all series with arguments unique to each series.", "Mix arguments that apply to all series with arguments unique to each series.",
:(plot(Vector[rand(10), rand(20)]; marker=:ellipse, markersize=8, markercolors=[:red,:blue]))), :(plot(Vector[rand(10), rand(20)]; marker=:ellipse, markersize=8, colors=[:red,:blue]))),
] ]

View File

@ -43,7 +43,7 @@ plot(Vector[rand(10),rand(20)]; marker=:ellipse,markersize=8)
Mix arguments that apply to all series with arguments unique to each series. Mix arguments that apply to all series with arguments unique to each series.
```julia ```julia
plot(Vector[rand(10),rand(20)]; marker=:ellipse,markersize=8,markercolors=[:red,:blue]) plot(Vector[rand(10),rand(20)]; marker=:ellipse,markersize=8,colors=[:red,:blue])
``` ```
![](../img/gadfly_example_5.png) ![](../img/gadfly_example_5.png)

View File

@ -43,7 +43,7 @@ plot(Vector[rand(10),rand(20)]; marker=:ellipse,markersize=8)
Mix arguments that apply to all series with arguments unique to each series. Mix arguments that apply to all series with arguments unique to each series.
```julia ```julia
plot(Vector[rand(10),rand(20)]; marker=:ellipse,markersize=8,markercolors=[:red,:blue]) plot(Vector[rand(10),rand(20)]; marker=:ellipse,markersize=8,colors=[:red,:blue])
``` ```
![](../img/qwt_example_5.png) ![](../img/qwt_example_5.png)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB