plotly-hs-0.1.0.0
Safe HaskellNone
LanguageHaskell2010

Graphics.Plotly

Description

Plotly Plots in Haskell

Synopsis

Documentation

plot Source #

Arguments

:: FilePath

Target path to .html file

-> Script

Plotly Script

-> IO () 

Save Plot to HTML File

scatter' Source #

Arguments

:: [String]

Trace Names

-> [[Double]]

xs

-> [[Double]]

ys

-> PlotConfig

Plot Config

-> Script

Plotly Script

Scatter Plot with individual x values per trace

scatter Source #

Arguments

:: [String]

Trace Names

-> [Double]

xs

-> [[Double]]

ys

-> PlotConfig

Plot Config

-> Script

Plotly Script

Scatter Plot with same x axis for all ys

histogram Source #

Arguments

:: [String]

Trace Names

-> [[Double]]

Traces

-> PlotConfig

Plot Config

-> Script

Plotly Script

Histogram Plot

heatmap Source #

Arguments

:: [String]

X Categories

-> [String]

Y Categories

-> [[Double]]

Data Matrix

-> PlotConfig

Plot Config

-> Script

Plotly Script

Heatmap Plot

scatter3d Source #

Arguments

:: [String]

Trace Names

-> [[Double]]

xs

-> [[Double]]

ys

-> [[Double]]

zs

-> PlotConfig

Plot Config

-> Script

Plotly Script

3D Scatter Plot

surface'' Source #

Arguments

:: [String]

Trace Names

-> [[[Double]]]

zs

-> PlotConfig

Plot Config

-> Script

Ploty Script

3D Surface Plot where X and Y are indices

surface' Source #

Arguments

:: [String]

Trace Names

-> [Double]

xs

-> [Double] 
-> [[[Double]]]

zs

-> PlotConfig

Plot Config

-> Script

Plotly Script

3D Surface Plot with same xs and ys for all zs

surface Source #

Arguments

:: [String]

Trace Names

-> [[Double]]

xs

-> [[Double]]

ys

-> [[[Double]]]

zs

-> PlotConfig

P

-> Script

Trace

3D Surface Plot

parcoord'' Source #

Arguments

:: [String]

Axis Names

-> [[[Double]]]

traces ( rows ( values ) )

-> PlotConfig

Plot Config

-> Script

Plot Script

Parallel Coordinate Plot without line gradient

parcoord' Source #

Arguments

:: [Double]

Color column

-> [String]

Axis Labels

-> [[[Double]]]

traces ( rows ( values ) )

-> PlotConfig

Plot Config

-> Script

Plotly Script

Parallel Coordinate Plot with discrete line colors

parcoord Source #

Arguments

:: [Double]

Color column

-> [String]

Axis Labels

-> [[[Double]]]

traces ( rows ( values ) )

-> PlotConfig

Plot Config

-> Script

Plotly Script

Parallel Coordinate Plot with line gradient

type Script = ByteString Source #

Internal Type Alias

data Mode Source #

Scatter Mode

Constructors

Lines

Draw Lines

Markers

Draw Markers only

LinesMarkers

Draw Both

Instances

Instances details
Eq Mode Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

(==) :: Mode -> Mode -> Bool #

(/=) :: Mode -> Mode -> Bool #

Show Mode Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

showsPrec :: Int -> Mode -> ShowS #

show :: Mode -> String #

showList :: [Mode] -> ShowS #

Generic Mode Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep Mode :: Type -> Type #

Methods

from :: Mode -> Rep Mode x #

to :: Rep Mode x -> Mode #

ToJSON Mode Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: Mode -> Value

toEncoding :: Mode -> Encoding

toJSONList :: [Mode] -> Value

toEncodingList :: [Mode] -> Encoding

type Rep Mode Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep Mode = D1 ('MetaData "Mode" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) (C1 ('MetaCons "Lines" 'PrefixI 'False) (U1 :: Type -> Type) :+: (C1 ('MetaCons "Markers" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "LinesMarkers" 'PrefixI 'False) (U1 :: Type -> Type)))

data Type Source #

Plot Type

Constructors

Scatter

Scatter Plot

Histogram

Histogram

Heatmap

Heatmap

Scatter3D

3D Scatter

Surface

3D Surface

ParCoords

Parallel Coordinate Plot

Instances

Instances details
Eq Type Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

(==) :: Type -> Type -> Bool #

(/=) :: Type -> Type -> Bool #

Show Type Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

showsPrec :: Int -> Type -> ShowS #

show :: Type -> String #

showList :: [Type] -> ShowS #

Generic Type Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep Type :: Type -> Type #

Methods

from :: Type -> Rep Type x #

to :: Rep Type x -> Type #

ToJSON Type Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: Type -> Value

toEncoding :: Type -> Encoding

toJSONList :: [Type] -> Value

toEncodingList :: [Type] -> Encoding

type Rep Type Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep Type = D1 ('MetaData "Type" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) ((C1 ('MetaCons "Scatter" 'PrefixI 'False) (U1 :: Type -> Type) :+: (C1 ('MetaCons "Histogram" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Heatmap" 'PrefixI 'False) (U1 :: Type -> Type))) :+: (C1 ('MetaCons "Scatter3D" 'PrefixI 'False) (U1 :: Type -> Type) :+: (C1 ('MetaCons "Surface" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "ParCoords" 'PrefixI 'False) (U1 :: Type -> Type))))

data Layout Source #

Layout for Plots

Constructors

Layout 

Fields

Instances

Instances details
Show Layout Source # 
Instance details

Defined in Graphics.Plotly.Internal

Generic Layout Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep Layout :: Type -> Type #

Methods

from :: Layout -> Rep Layout x #

to :: Rep Layout x -> Layout #

ToJSON Layout Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: Layout -> Value

toEncoding :: Layout -> Encoding

toJSONList :: [Layout] -> Value

toEncodingList :: [Layout] -> Encoding

type Rep Layout Source # 
Instance details

Defined in Graphics.Plotly.Internal

data BarMode Source #

Bar Layout

Constructors

Stack

Stacked

Group

Grouped

Overlay

Overlayed

Relative

Relative

Instances

Instances details
Eq BarMode Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

(==) :: BarMode -> BarMode -> Bool #

(/=) :: BarMode -> BarMode -> Bool #

Show BarMode Source # 
Instance details

Defined in Graphics.Plotly.Internal

Generic BarMode Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep BarMode :: Type -> Type #

Methods

from :: BarMode -> Rep BarMode x #

to :: Rep BarMode x -> BarMode #

ToJSON BarMode Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: BarMode -> Value

toEncoding :: BarMode -> Encoding

toJSONList :: [BarMode] -> Value

toEncodingList :: [BarMode] -> Encoding

type Rep BarMode Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep BarMode = D1 ('MetaData "BarMode" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) ((C1 ('MetaCons "Stack" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Group" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Overlay" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Relative" 'PrefixI 'False) (U1 :: Type -> Type)))

data AxisType Source #

Axis Type

Constructors

Linear

Linear Axis (default)

Log

Logarithmic Axis

Date

Date Axis

Category

Categorical Axis

MultiCategory

Multi Category Axis (?)

Instances

Instances details
Eq AxisType Source # 
Instance details

Defined in Graphics.Plotly.Internal

Show AxisType Source # 
Instance details

Defined in Graphics.Plotly.Internal

Generic AxisType Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep AxisType :: Type -> Type #

Methods

from :: AxisType -> Rep AxisType x #

to :: Rep AxisType x -> AxisType #

ToJSON AxisType Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: AxisType -> Value

toEncoding :: AxisType -> Encoding

toJSONList :: [AxisType] -> Value

toEncodingList :: [AxisType] -> Encoding

type Rep AxisType Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep AxisType = D1 ('MetaData "AxisType" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) ((C1 ('MetaCons "Linear" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Log" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Date" 'PrefixI 'False) (U1 :: Type -> Type) :+: (C1 ('MetaCons "Category" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "MultiCategory" 'PrefixI 'False) (U1 :: Type -> Type))))

data Color Source #

Some Color Strings

Constructors

Red 
Green 
Blue 
Yellow 
Magenta 
Cyan 
Black 
Gray 
White 

Instances

Instances details
Enum Color Source # 
Instance details

Defined in Graphics.Plotly.Internal

Eq Color Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

(==) :: Color -> Color -> Bool #

(/=) :: Color -> Color -> Bool #

Show Color Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

showsPrec :: Int -> Color -> ShowS #

show :: Color -> String #

showList :: [Color] -> ShowS #

Generic Color Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep Color :: Type -> Type #

Methods

from :: Color -> Rep Color x #

to :: Rep Color x -> Color #

ToJSON Color Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: Color -> Value

toEncoding :: Color -> Encoding

toJSONList :: [Color] -> Value

toEncodingList :: [Color] -> Encoding

type Rep Color Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep Color = D1 ('MetaData "Color" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) (((C1 ('MetaCons "Red" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Green" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Blue" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Yellow" 'PrefixI 'False) (U1 :: Type -> Type))) :+: ((C1 ('MetaCons "Magenta" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Cyan" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Black" 'PrefixI 'False) (U1 :: Type -> Type) :+: (C1 ('MetaCons "Gray" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "White" 'PrefixI 'False) (U1 :: Type -> Type)))))

type ColorMap = [ColorMapping] Source #

Type alias for a list of color mappings

data ColorScale Source #

Color scales for Heamap / 3D Plots

Instances

Instances details
Eq ColorScale Source # 
Instance details

Defined in Graphics.Plotly.Internal

Show ColorScale Source # 
Instance details

Defined in Graphics.Plotly.Internal

Generic ColorScale Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep ColorScale :: Type -> Type #

ToJSON ColorScale Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: ColorScale -> Value

toEncoding :: ColorScale -> Encoding

toJSONList :: [ColorScale] -> Value

toEncodingList :: [ColorScale] -> Encoding

type Rep ColorScale Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep ColorScale = D1 ('MetaData "ColorScale" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) ((((C1 ('MetaCons "Discrete" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Blackbody" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Bluered" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Blues" 'PrefixI 'False) (U1 :: Type -> Type))) :+: ((C1 ('MetaCons "Cividis" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Earth" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Electric" 'PrefixI 'False) (U1 :: Type -> Type) :+: (C1 ('MetaCons "Greens" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Greys" 'PrefixI 'False) (U1 :: Type -> Type))))) :+: (((C1 ('MetaCons "Hot" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Jet" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Picnic" 'PrefixI 'False) (U1 :: Type -> Type) :+: (C1 ('MetaCons "Portland" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Rainbow" 'PrefixI 'False) (U1 :: Type -> Type)))) :+: ((C1 ('MetaCons "RdBu" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Reds" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Viridis" 'PrefixI 'False) (U1 :: Type -> Type) :+: (C1 ('MetaCons "YlGnBu" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "YlOrRd" 'PrefixI 'False) (U1 :: Type -> Type))))))

data Symbol Source #

Marker Symbols

Instances

Instances details
Eq Symbol Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

(==) :: Symbol -> Symbol -> Bool #

(/=) :: Symbol -> Symbol -> Bool #

Show Symbol Source # 
Instance details

Defined in Graphics.Plotly.Internal

Generic Symbol Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep Symbol :: Type -> Type #

Methods

from :: Symbol -> Rep Symbol x #

to :: Rep Symbol x -> Symbol #

ToJSON Symbol Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: Symbol -> Value

toEncoding :: Symbol -> Encoding

toJSONList :: [Symbol] -> Value

toEncodingList :: [Symbol] -> Encoding

type Rep Symbol Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep Symbol = D1 ('MetaData "Symbol" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) (((C1 ('MetaCons "Circle" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "CircleOpen" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "Cross" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Diamond" 'PrefixI 'False) (U1 :: Type -> Type))) :+: ((C1 ('MetaCons "DiamondOpen" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "Square" 'PrefixI 'False) (U1 :: Type -> Type)) :+: (C1 ('MetaCons "SquareOpen" 'PrefixI 'False) (U1 :: Type -> Type) :+: C1 ('MetaCons "X" 'PrefixI 'False) (U1 :: Type -> Type))))

data Marker Source #

Marker Config

Constructors

Marker 

Fields

Instances

Instances details
Show Marker Source # 
Instance details

Defined in Graphics.Plotly.Internal

Generic Marker Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep Marker :: Type -> Type #

Methods

from :: Marker -> Rep Marker x #

to :: Rep Marker x -> Marker #

ToJSON Marker Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: Marker -> Value

toEncoding :: Marker -> Encoding

toJSONList :: [Marker] -> Value

toEncodingList :: [Marker] -> Encoding

type Rep Marker Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep Marker = D1 ('MetaData "Marker" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) (C1 ('MetaCons "Marker" 'PrefixI 'True) (S1 ('MetaSel ('Just "size") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Double) :*: (S1 ('MetaSel ('Just "symbol") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Symbol) :*: S1 ('MetaSel ('Just "opacity") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Double))))

data Line Source #

Parallel Coordinate Lines

Constructors

Line 

Fields

Instances

Instances details
Show Line Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

showsPrec :: Int -> Line -> ShowS #

show :: Line -> String #

showList :: [Line] -> ShowS #

Generic Line Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep Line :: Type -> Type #

Methods

from :: Line -> Rep Line x #

to :: Rep Line x -> Line #

ToJSON Line Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: Line -> Value

toEncoding :: Line -> Encoding

toJSONList :: [Line] -> Value

toEncodingList :: [Line] -> Encoding

type Rep Line Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep Line = D1 ('MetaData "Line" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) (C1 ('MetaCons "Line" 'PrefixI 'True) ((S1 ('MetaSel ('Just "showscale") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "reversescale") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "colorscale") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe ColorScale)) :*: (S1 ('MetaSel ('Just "colormap") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe ColorMap)) :*: S1 ('MetaSel ('Just "color") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe [Double]))))))

data XBins Source #

Bins in Histogram

Constructors

XBins 

Fields

Instances

Instances details
Show XBins Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

showsPrec :: Int -> XBins -> ShowS #

show :: XBins -> String #

showList :: [XBins] -> ShowS #

Generic XBins Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep XBins :: Type -> Type #

Methods

from :: XBins -> Rep XBins x #

to :: Rep XBins x -> XBins #

ToJSON XBins Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: XBins -> Value

toEncoding :: XBins -> Encoding

toJSONList :: [XBins] -> Value

toEncodingList :: [XBins] -> Encoding

type Rep XBins Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep XBins = D1 ('MetaData "XBins" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) (C1 ('MetaCons "XBins" 'PrefixI 'True) (S1 ('MetaSel ('Just "size") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Double) :*: (S1 ('MetaSel ('Just "start") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "end") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe Double)))))

data Margin Source #

Layout Margins

Constructors

Margin 

Fields

  • l :: !Int

    Left Margin

  • r :: !Int

    Right Margin

  • b :: !Int

    Bottom Margin

  • t :: !Int

    Top Margin

Instances

Instances details
Eq Margin Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

(==) :: Margin -> Margin -> Bool #

(/=) :: Margin -> Margin -> Bool #

Show Margin Source # 
Instance details

Defined in Graphics.Plotly.Internal

Generic Margin Source # 
Instance details

Defined in Graphics.Plotly.Internal

Associated Types

type Rep Margin :: Type -> Type #

Methods

from :: Margin -> Rep Margin x #

to :: Rep Margin x -> Margin #

ToJSON Margin Source # 
Instance details

Defined in Graphics.Plotly.Internal

Methods

toJSON :: Margin -> Value

toEncoding :: Margin -> Encoding

toJSONList :: [Margin] -> Value

toEncodingList :: [Margin] -> Encoding

type Rep Margin Source # 
Instance details

Defined in Graphics.Plotly.Internal

type Rep Margin = D1 ('MetaData "Margin" "Graphics.Plotly.Internal" "plotly-hs-0.1.0.0-5GqvvACHt0P1rkfhVJsYpr" 'False) (C1 ('MetaCons "Margin" 'PrefixI 'True) ((S1 ('MetaSel ('Just "l") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "r") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Int)) :*: (S1 ('MetaSel ('Just "b") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "t") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Int))))

data PlotConfig Source #

Trace Independent Plot Config

Constructors

PlotConfig 

Fields

Instances

Instances details
Show PlotConfig Source # 
Instance details

Defined in Graphics.Plotly.Default

defaultConfig :: PlotConfig Source #

Default PlotConfig