|
From: Nils W. <ni...@go...> - 2013-09-17 08:25:16
|
Hi all, How can I modify the grid linewidth and grid line color of an Axes3D object ? is it possible to use white instead of gray for the background color ? The following snippet doesn't show the desired effect. from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt fig = plt.figure(figsize=(10,8)) ax = fig.gca(projection='3d') ax.grid(color='r',linestyle='-',linewdith=2) Nils |