pub struct Gridlines {
pub major: bool,
pub minor: bool,
}Expand description
网格线配置(<c:majorGridlines> / <c:minorGridlines>)。
挂在 c:catAx / c:valAx 内,控制坐标轴的主/次网格线显示。
默认 major=false, minor=false(不显示网格线,与 PowerPoint 默认一致)。
Fields§
§major: bool是否显示主网格线(<c:majorGridlines/>)。
minor: bool是否显示次网格线(<c:minorGridlines/>)。
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Gridlines
impl RefUnwindSafe for Gridlines
impl Send for Gridlines
impl Sync for Gridlines
impl Unpin for Gridlines
impl UnsafeUnpin for Gridlines
impl UnwindSafe for Gridlines
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more