Angara.Chart


Plot

Namespace: Angara.Charting

Static members

Static memberDescription
area(...)
Signature: (seriesX:float [] * seriesY1:float [] * seriesY2:float [] * fill:string option * displayName:string option * titles:AreaTitles option) -> PlotInfo
heatmap(...)
Signature: (x:float [] * y:float [] * values:float [] * colorPalette:string option * treatAs:HeatmapTreatAs option * displayName:string option * titles:HeatmapTitles option) -> PlotInfo
heatmap(...)
Signature: (x:float [] * y:float [] * values:HeatmapValues * colorPalette:string option * treatAs:HeatmapTreatAs option * displayName:string option * titles:HeatmapTitles option) -> PlotInfo
line(...)
Signature: (seriesY:float [] * stroke:string option * thickness:float option * treatAs:LineTreatAs option * fill68:string option * fill95:string option * displayName:string option * titles:LineTitles option) -> PlotInfo
line(...)
Signature: (seriesX:float [] * seriesY:float [] * stroke:string option * thickness:float option * treatAs:LineTreatAs option * fill68:string option * fill95:string option * displayName:string option * titles:LineTitles option) -> PlotInfo
line(...)
Signature: (x:LineX * y:LineY * stroke:string option * thickness:float option * treatAs:LineTreatAs option * fill68:string option * fill95:string option * displayName:string option * titles:LineTitles option) -> PlotInfo
markers(...)
Signature: (seriesX:float [] * seriesY:float [] * color:MarkersColor option * colorPalette:string option * size:MarkersSize option * sizePalette:MarkersSizePalette option * shape:MarkersShape option * borderColor:string option * displayName:string option * titles:MarkersTitles option) -> PlotInfo

Displays data as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.

markers(...)
Signature: (x:MarkersX * y:MarkersY * color:MarkersColor option * colorPalette:string option * size:MarkersSize option * sizePalette:MarkersSizePalette option * shape:MarkersShape option * borderColor:string option * displayName:string option * titles:MarkersTitles option) -> PlotInfo

Displays data as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.

Fork me on GitHub