# Module: plotting
# Table of contents
# Type Aliases
# Classes
# Type Aliases
# PlotOptions
Ƭ PlotOptions: ContainerOptions
& Partial
<{ background
: ResponsiveCanvasOptions
; foreground
: ResponsiveCanvasOptions
; axis
: AxisOptions
}>
# Defined in
plotting/Plot.ts:8 (opens new window)
# AxisOptions
Ƭ AxisOptions: Partial
<{ majorTicks
: [boolean
, boolean
] | boolean
; minorTicks
: [boolean
, boolean
] | boolean
; majorTickSize
: [number
, number
] | number
; minorTickSize
: [number
, number
] | number
; majorGridlines
: [boolean
, boolean
] | boolean
; minorGridlines
: [boolean
, boolean
] | boolean
; majorGridSize
: [number
, number
] | number
; minorGridSize
: [number
, number
] | number
}>
# Defined in
plotting/Axis.ts:5 (opens new window)
# TraceOptions
Ƭ TraceOptions: Partial
<{ traceColour
: string
; traceStyle
: "solid"
| "dotted"
| "dashed"
| "dashdot"
| "none"
; traceWidth
: number
; markerColour
: string
; markerStyle
: "circle"
| "plus"
| "cross"
| "arrow"
| "none"
; markerSize
: number
; visibility
: boolean
}>
# Defined in
plotting/Trace.ts:6 (opens new window)
# FigureOptions
Ƭ FigureOptions: Partial
<{ plot
: PlotOptions
}>