diff --git a/docs/example_generation.jl b/docs/example_generation.jl index 75157637..372479bd 100644 --- a/docs/example_generation.jl +++ b/docs/example_generation.jl @@ -27,13 +27,13 @@ const examples = PlotExample[ :(plot(0:0.01:4π, [sin,cos]))), PlotExample("Global", "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", "Plot multiple series with different numbers of points.", :(plot(Vector[rand(10), rand(20)]; marker=:ellipse, markersize=8))), PlotExample("Vectors w/ pluralized args", "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]))), ] diff --git a/docs/gadfly_examples.md b/docs/gadfly_examples.md index b8168d3d..da9a3ddb 100644 --- a/docs/gadfly_examples.md +++ b/docs/gadfly_examples.md @@ -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. ```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) diff --git a/docs/qwt_examples.md b/docs/qwt_examples.md index 2372bfa3..1f135bc9 100644 --- a/docs/qwt_examples.md +++ b/docs/qwt_examples.md @@ -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. ```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) diff --git a/img/gadfly_example_1.png b/img/gadfly_example_1.png index 0f15cea1..68af56a0 100644 Binary files a/img/gadfly_example_1.png and b/img/gadfly_example_1.png differ diff --git a/img/gadfly_example_3.png b/img/gadfly_example_3.png index e0e5216c..c6fecf85 100644 Binary files a/img/gadfly_example_3.png and b/img/gadfly_example_3.png differ diff --git a/img/gadfly_example_4.png b/img/gadfly_example_4.png index 3aad05b9..0b25b9bf 100644 Binary files a/img/gadfly_example_4.png and b/img/gadfly_example_4.png differ diff --git a/img/gadfly_example_5.png b/img/gadfly_example_5.png index 8b810f04..a527e175 100644 Binary files a/img/gadfly_example_5.png and b/img/gadfly_example_5.png differ diff --git a/img/qwt_example_1.png b/img/qwt_example_1.png index c71f3b8d..182ecd92 100644 Binary files a/img/qwt_example_1.png and b/img/qwt_example_1.png differ diff --git a/img/qwt_example_3.png b/img/qwt_example_3.png index 5975dd46..8df52204 100644 Binary files a/img/qwt_example_3.png and b/img/qwt_example_3.png differ diff --git a/img/qwt_example_4.png b/img/qwt_example_4.png index 41dd7207..651dbab3 100644 Binary files a/img/qwt_example_4.png and b/img/qwt_example_4.png differ diff --git a/img/qwt_example_5.png b/img/qwt_example_5.png index 82565340..6938c6ad 100644 Binary files a/img/qwt_example_5.png and b/img/qwt_example_5.png differ