Daniel Schwabeneder
44b533f501
allow matplotlib 1.5 usage
2017-07-24 10:02:44 +02:00
Daniel Schwabeneder
0fa459d590
fix alpha in legend markers
2017-07-21 10:52:36 +02:00
Daniel Schwabeneder
96d34bb5ee
changed marker for path with fillrange
2017-07-21 10:05:27 +02:00
Daniel Schwabeneder
9f712b44f3
add ribbon area to marker
2017-07-21 09:12:27 +02:00
Daniel Schwabeneder
1ff8663e44
allow setting surface alpha in plotly
2017-07-21 01:12:39 +02:00
Daniel Schwabeneder
52f042263b
fix case
2017-07-20 23:38:16 +02:00
Daniel Schwabeneder
65c3d90642
Merge pull request #971 from timholy/pull-request/a7a447a8
...
Update to newer Images
2017-07-20 22:23:52 +02:00
Daniel Schwabeneder
7b15f7d74b
fix round() deprecation in gr.jl
2017-07-20 16:08:45 +02:00
SimonDanisch
f66d8bed8f
fix glvisualize backend for 0.6
2017-07-20 10:37:48 +02:00
Daniel Schwabeneder
155634ef34
change gr legend marker for ribbon
2017-07-19 21:26:25 +02:00
Daniel Schwabeneder
9b2da0d645
Merge branch 'master' into ds-heatmap-logscale
2017-07-16 12:51:33 +02:00
Daniel Schwabeneder
0b1118540a
Merge pull request #969 from pearlzli/plotly-fill
...
Add fillrange for Plotly backend
2017-07-14 22:55:33 +02:00
Tim Holy
96bd0bb46c
Fix some errors/depwarns
2017-07-14 10:09:30 -05:00
Tim Holy
33e97ee49b
Update to newer Images
2017-07-14 10:07:58 -05:00
Pearl Li
2a0d5a0a03
Hide legend entry for series being filled to
2017-07-12 17:04:19 -04:00
Pearl Li
aec30301a1
Add fillrange for Plotly
2017-07-12 16:20:53 -04:00
JackDevine
409cf2c630
Fixed a deprecation warning on the pyplot backend
...
The follwing code created a deprecation warining:
using Plots; pyplot()
plot([1,2,3,4], [2,3,4,5], yscale=:log10)
2017-07-12 17:37:37 +12:00
SimonDanisch
02ddbc8381
fix glvisualize backend for 0.6
2017-07-11 09:04:35 +02:00
Josef Heinen
46ae505bab
gr: implemented "old" heatmap behaviour
2017-06-22 15:31:13 -07:00
Josef Heinen
356a5b6136
gr: fixed heatmap bug
2017-06-22 12:56:41 -07:00
Josef Heinen
47c51b28c1
gr: heatmaps now respect xlim/ylim specifications
...
Fixes https://github.com/JuliaPlots/Plots.jl/issues/942
2017-06-19 18:15:33 -07:00
Daniel Schwabeneder
b091d95eb2
turn off colorbar for wireframe
2017-06-18 17:56:47 +02:00
Daniel Schwabeneder
33327d3992
allow turning off the colorbar for heatmap, contour and surface
2017-06-18 17:45:20 +02:00
Daniel Schwabeneder
027ce58655
avoid negative heatmap edges for log axis on gr and pyplot
2017-06-18 16:14:44 +02:00
MA Laforge
86149ba3a7
Conform to changes in InspectDR.PlotLayout.
2017-06-16 17:17:01 -04:00
Daniel Schwabeneder
5b6423ec6c
only change top corners of colorbar axes
2017-06-12 22:15:57 +02:00
Daniel Schwabeneder
b3efcf9b68
reduced colorbar size for z axis limits >= 1e7
2017-06-12 20:39:49 +02:00
ChrisRackauckas
44b6157f17
cycle => _cycle
2017-06-09 08:43:01 -07:00
Michael K. Borregaard
8f6b0c50d6
ignoreNaN => ignorenan
2017-06-08 12:54:25 +02:00
Josef Heinen
46cdbacf0b
gr: removed println statement
2017-06-07 18:15:43 -07:00
Michael K. Borregaard
f097fb57b5
Fix some deprecation warnings
2017-06-07 23:55:30 +02:00
Michael Krabbe Borregaard
fe83937368
Merge pull request #870 from wfrgra/legend
...
add ability to specify legend placement to gr backend
2017-06-07 15:44:00 +02:00
Michael Krabbe Borregaard
6a23202e89
Merge pull request #825 from ma-laforge/hdf5plots
...
Re-integrate HDF5 plots.
2017-06-06 12:36:46 +02:00
Josef Heinen
b140fddebd
gr: added support for legend title
2017-06-04 10:02:20 +02:00
Daniel Schwabeneder
24ea1c4847
Merge pull request #887 from daschw/ds-pyplot-legendtitle
...
Added legend_title attribute for Pylot backend
2017-06-04 09:29:50 +02:00
Daniel Schwabeneder
5e7756810d
changed default attribute to legendtitle
2017-06-03 13:47:24 +02:00
Daniel Schwabeneder
ee5617c6b8
added attribute for pyplot backend
2017-06-02 18:55:47 +02:00
Daniel Schwabeneder
dc757cbf6c
changed gr legend markers for fillrange
2017-06-02 17:39:25 +02:00
Michael K. Borregaard
80d0d6ecc8
Change NaNMath implementation
...
We needed some functions to forward to Base methods, e.g. when non-`AbstractArray{<:AbstractFloat}` was passed
2017-06-01 22:19:38 +02:00
Michael Krabbe Borregaard
d29df4289e
RFC: Ignore NaNs on 0.6 (like on 0.5): fixes #796 ( #876 )
...
Replaces min, max, minimum, mean, maximum and extrema with NaNMath versions in places where NaNs can occur.
To avoid returning NaN when there are NaNs in the Vector
* Also add maximum and minimum
* define _-prefaced versions of mean, maximum, minimum, extrema
* variable arg numbers for Base methods
* Different implementation of the override
* remove underscore from 2-arg versions of maximum
* some forgotten extrema -> _extrema
* Fix bug in _extrema definition
* edit comment
* replace min and max with _min and _max
* Base NaN-compliant functions on NaNMath
replace _min and _max with NaNMath versions
* Use NaNMath explicitly everywhere
* remove unneccesary NaNMath calls
* Ensure ceil does not error on NaN
* Added one more maximum in gr
2017-06-01 19:17:28 +02:00
Michael Krabbe Borregaard
84406f0823
Fixed writing error.
2017-06-01 17:10:03 +02:00
Michael K. Borregaard
0e308d9f50
Change installation message
2017-06-01 11:55:43 +02:00
Michael Krabbe Borregaard
7805f3f85b
Merge pull request #862 from JuliaPlots/sd/fix_signals
...
fix glvisualize backend
2017-06-01 11:51:09 +02:00
Josef Heinen
abf8ca2dc7
gr: fixed several bugs
...
- use correct image orientation
- added missing marker keywords
- improved alignment of axes labels
- corrected scaling of polar coordinates
- slightly shrink pie chart viewport
2017-05-30 10:29:31 +02:00
Josef Heinen
231e11715f
gr: fix problems with axes display
2017-05-28 16:23:21 +02:00
wgrant
d6f1120dfc
add ability to specify legend placement to gr backend
2017-05-27 16:46:38 +10:00
Josef Heinen
effcffff8a
gr: corrected size of shape markers
2017-05-26 14:59:30 +02:00
Josef Heinen
4756e04e25
gr: improve viewport size for 3D plots
2017-05-24 11:19:43 +02:00
SimonDanisch
5b73f1e56c
remove clean up code, switch to renderloop
2017-05-23 16:41:18 +02:00
Michael K. Borregaard
53719e5a8e
Fix missing brackets
2017-05-23 10:51:00 +02:00