-
-
Notifications
You must be signed in to change notification settings - Fork 372
Open
Labels
Description
- The dpi of the pyplot backend has changed with the shift to matplotlib 2.0. Plots should adjust accordingly.
- gr and plotlyjs both ignore the dpi argument
- The pyplot backend seems to have the dpi argument backwards:
using Plots; pyplot()
scatter(1:10,1:10) # dpi = 100 as defaultscatter(1:10, 1:10, dpi = 150) # This should result in smaller elementsAn earlier merged PR claimed to fix this (https://github.com/JuliaPlots/Plots.jl/pull/517/files) but it hasn't, it seems. It did do something, though, reverting that PR gives
scatter(1:10, 1:10, dpi = 350)

