using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Plotly.NET;
using Plotly.NET.LayoutObjects;
using Plotly.NET.TraceObjects;
using System.Runtime.InteropServices;
using static Plotly.NET.StyleParam;
namespace Plotly.NET.CSharp
{
public static partial class Chart
{
///
/// Creates a choropleth map using plotly's base geo map.
///
/// A choropleth map is a type of thematic map in which a set of pre-defined areas is colored or patterned in proportion to a statistical variable that represents an aggregate summary of a geographic characteristic within each area, such as population density or per-capita income.
///
/// Sets the locations which will be colored. See LocationMode for more info.
/// The color values for each location
/// Sets the trace name. The trace name appear as the legend item and on hover.
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets optional GeoJSON data associated with this trace. If not given, the features on the base map are used. It can be set as a valid GeoJSON object or as a URL string. Note that we only accept GeoJSONs of type "FeatureCollection" or "Feature" with geometries of type "Polygon" or "MultiPolygon".
/// Sets the key in GeoJSON features which is used as id to match the items included in the `locations` array. Only has an effect when `geojson` is set. Support nested property, for example "properties.name".
/// Sets the text elements associated with each location.
/// Sets the text elements associated with each location.
/// Sets the colorbar.
/// Sets the colorscale.
/// Determines whether or not a colorbar is displayed for this trace.
/// Reverses the color mapping if true.
/// Determines the set of locations used to match entries in `locations` to regions on the map. Values "ISO-3", "USA-states", "country names" correspond to features on the base map and value "geojson-id" corresponds to features from a custom GeoJSON linked to the `geojson` attribute.
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart ChoroplethMap(
IEnumerable locations,
IEnumerable z,
Optional Name = default,
Optional ShowLegend = default,
Optional GeoJson = default,
Optional FeatureIdKey = default,
Optional Text = default,
Optional> MultiText = default,
Optional ColorBar = default,
Optional ColorScale = default,
Optional ShowScale = default,
Optional ReverseScale = default,
Optional LocationMode = default,
Optional UseDefaults = default
)
where ZType: IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Geo.Chart.ChoroplethMap(
locations: locations,
z: z,
Name: Name.ToOption(),
ShowLegend: ShowLegend.ToOption(),
GeoJson: GeoJson.ToOption(),
FeatureIdKey: FeatureIdKey.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
ColorBar: ColorBar.ToOption(),
ColorScale: ColorScale.ToOption(),
ShowScale: ShowScale.ToOption(),
ReverseScale: ReverseScale.ToOption(),
LocationMode: LocationMode.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a ScatterGeo chart, where data is visualized using plotly's base geo map.
///
/// In general, ScatterGeo Plots plot two-dimensional data on a geo map via (lat,lon) coordinates.
///
/// ScatterGeo charts are the basis of PointGeo, LineGeo, and BubbleGeo Charts, and can be customized as such. We also provide abstractions for those: Chart.PointGeo, Chart.LineGeo, Chart.BubbleGeo
///
/// Sets the longitude coordinates (in degrees East).
/// Sets the latitude coordinates (in degrees North).
/// Determines the drawing mode for this scatter trace.
/// Sets the trace name. The trace name appear as the legend item and on hover
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the opactity of the trace
/// Sets the opactity of individual datum markers
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the position of text associated with each datum
/// Sets the position of text associated with individual datum
/// Sets the color of the marker
/// Sets the colorscale of the marker
/// Sets the outline of the marker
/// Sets the marker symbol for each datum
/// Sets the marker symbol for each individual datum
/// Sets the marker (use this for more finegrained control than the other marker-associated arguments)
/// Sets the color of the line
/// Sets the colorscale of the line
/// Sets the width of the line
/// sets the drawing style of the line
/// Sets the line (use this for more finegrained control than the other line-associated arguments)
/// Determines the set of locations used to match entries in `locations` to regions on the map. Values "ISO-3", "USA-states", "country names" correspond to features on the base map and value "geojson-id" corresponds to features from a custom GeoJSON linked to the `geojson` attribute.
/// Sets optional GeoJSON data associated with this trace. If not given, the features on the base map are used. It can be set as a valid GeoJSON object or as a URL string. Note that we only accept GeoJSONs of type "FeatureCollection" or "Feature" with geometries of type "Polygon" or "MultiPolygon".
/// Sets the key in GeoJSON features which is used as id to match the items included in the `locations` array. Only has an effect when `geojson` is set. Support nested property, for example "properties.name".
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart ScatterGeo(
IEnumerable longitudes,
IEnumerable latitudes,
StyleParam.Mode mode,
Optional Name = default,
Optional ShowLegend = default,
Optional Opacity = default,
Optional> MultiOpacity = default,
Optional Text = default,
Optional> MultiText = default,
Optional TextPosition = default,
Optional> MultiTextPosition = default,
Optional MarkerColor = default,
Optional MarkerColorScale = default,
Optional MarkerOutline = default,
Optional MarkerSymbol = default,
Optional> MultiMarkerSymbol = default,
Optional Marker = default,
Optional LineColor = default,
Optional LineColorScale = default,
Optional LineWidth = default,
Optional LineDash = default,
Optional Line = default,
Optional LocationMode = default,
Optional GeoJson = default,
Optional FeatureIdKey = default,
Optional UseDefaults = default
)
where LongitudesType : IConvertible
where LatitudesType : IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Geo.Chart.ScatterGeo(
longitudes: longitudes,
latitudes: latitudes,
mode: mode,
Name: Name.ToOption(),
ShowLegend: ShowLegend.ToOption(),
Opacity: Opacity.ToOption(),
MultiOpacity: MultiOpacity.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
TextPosition: TextPosition.ToOption(),
MultiTextPosition: MultiTextPosition.ToOption(),
MarkerColor: MarkerColor.ToOption(),
MarkerColorScale: MarkerColorScale.ToOption(),
MarkerOutline: MarkerOutline.ToOption(),
MarkerSymbol: MarkerSymbol.ToOption(),
MultiMarkerSymbol: MultiMarkerSymbol.ToOption(),
Marker: Marker.ToOption(),
LineColor: LineColor.ToOption(),
LineColorScale: LineColorScale.ToOption(),
LineWidth: LineWidth.ToOption(),
LineDash: LineDash.ToOption(),
Line: Line.ToOption(),
LocationMode: LocationMode.ToOption(),
GeoJson: GeoJson.ToOption(),
FeatureIdKey: FeatureIdKey.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a PointGeo chart.
///
/// In general, PointGeo Plots plot two-dimensional data as points using plotly's base geo map.
///
/// Sets the longitude coordinates (in degrees East).
/// Sets the latitude coordinates (in degrees North).
/// Sets the trace name. The trace name appear as the legend item and on hover
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the opactity of the trace
/// Sets the opactity of individual datum markers
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the position of text associated with each datum
/// Sets the position of text associated with individual datum
/// Sets the color of the marker
/// Sets the colorscale of the marker
/// Sets the outline of the marker
/// Sets the marker symbol for each datum
/// Sets the marker symbol for each individual datum
/// Sets the marker (use this for more finegrained control than the other marker-associated arguments)
/// Determines the set of locations used to match entries in `locations` to regions on the map. Values "ISO-3", "USA-states", "country names" correspond to features on the base map and value "geojson-id" corresponds to features from a custom GeoJSON linked to the `geojson` attribute.
/// Sets optional GeoJSON data associated with this trace. If not given, the features on the base map are used. It can be set as a valid GeoJSON object or as a URL string. Note that we only accept GeoJSONs of type "FeatureCollection" or "Feature" with geometries of type "Polygon" or "MultiPolygon".
/// Sets the key in GeoJSON features which is used as id to match the items included in the `locations` array. Only has an effect when `geojson` is set. Support nested property, for example "properties.name".
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart PointGeo(
IEnumerable longitudes,
IEnumerable latitudes,
Optional Name = default,
Optional ShowLegend = default,
Optional Opacity = default,
Optional> MultiOpacity = default,
Optional Text = default,
Optional> MultiText = default,
Optional TextPosition = default,
Optional> MultiTextPosition = default,
Optional MarkerColor = default,
Optional MarkerColorScale = default,
Optional MarkerOutline = default,
Optional MarkerSymbol = default,
Optional> MultiMarkerSymbol = default,
Optional Marker = default,
Optional LocationMode = default,
Optional GeoJson = default,
Optional FeatureIdKey = default,
Optional UseDefaults = default
)
where LongitudesType : IConvertible
where LatitudesType : IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Geo.Chart.PointGeo(
longitudes: longitudes,
latitudes: latitudes,
Name: Name.ToOption(),
ShowLegend: ShowLegend.ToOption(),
Opacity: Opacity.ToOption(),
MultiOpacity: MultiOpacity.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
TextPosition: TextPosition.ToOption(),
MultiTextPosition: MultiTextPosition.ToOption(),
MarkerColor: MarkerColor.ToOption(),
MarkerColorScale: MarkerColorScale.ToOption(),
MarkerOutline: MarkerOutline.ToOption(),
MarkerSymbol: MarkerSymbol.ToOption(),
MultiMarkerSymbol: MultiMarkerSymbol.ToOption(),
Marker: Marker.ToOption(),
LocationMode: LocationMode.ToOption(),
GeoJson: GeoJson.ToOption(),
FeatureIdKey: FeatureIdKey.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a LineGeo chart.
///
/// In general, LineGeo Plots plot two-dimensional data connected by lines using plotly's base geo map.
///
/// Sets the longitude coordinates (in degrees East).
/// Sets the latitude coordinates (in degrees North).
///
/// Sets the trace name. The trace name appear as the legend item and on hover
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the opactity of the trace
/// Sets the opactity of individual datum markers
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the position of text associated with each datum
/// Sets the position of text associated with individual datum
/// Sets the color of the marker
/// Sets the colorscale of the marker
/// Sets the outline of the marker
/// Sets the marker symbol for each datum
/// Sets the marker symbol for each individual datum
/// Sets the marker (use this for more finegrained control than the other marker-associated arguments)
/// Sets the color of the line
/// Sets the colorscale of the line
/// Sets the width of the line
/// sets the drawing style of the line
/// Sets the line (use this for more finegrained control than the other line-associated arguments)
/// Determines the set of locations used to match entries in `locations` to regions on the map. Values "ISO-3", "USA-states", "country names" correspond to features on the base map and value "geojson-id" corresponds to features from a custom GeoJSON linked to the `geojson` attribute.
/// Sets optional GeoJSON data associated with this trace. If not given, the features on the base map are used. It can be set as a valid GeoJSON object or as a URL string. Note that we only accept GeoJSONs of type "FeatureCollection" or "Feature" with geometries of type "Polygon" or "MultiPolygon".
/// Sets the key in GeoJSON features which is used as id to match the items included in the `locations` array. Only has an effect when `geojson` is set. Support nested property, for example "properties.name".
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart LineGeo(
IEnumerable longitudes,
IEnumerable latitudes,
Optional ShowMarkers = default,
Optional Name = default,
Optional ShowLegend = default,
Optional Opacity = default,
Optional> MultiOpacity = default,
Optional Text = default,
Optional> MultiText = default,
Optional TextPosition = default,
Optional> MultiTextPosition = default,
Optional MarkerColor = default,
Optional MarkerColorScale = default,
Optional MarkerOutline = default,
Optional MarkerSymbol = default,
Optional> MultiMarkerSymbol = default,
Optional Marker = default,
Optional LineColor = default,
Optional LineColorScale = default,
Optional LineWidth = default,
Optional LineDash = default,
Optional Line = default,
Optional LocationMode = default,
Optional GeoJson = default,
Optional FeatureIdKey = default,
Optional UseDefaults = default
)
where LongitudesType : IConvertible
where LatitudesType : IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Geo.Chart.LineGeo(
longitudes: longitudes,
latitudes: latitudes,
ShowMarkers: ShowMarkers.ToOption(),
Name: Name.ToOption(),
ShowLegend: ShowLegend.ToOption(),
Opacity: Opacity.ToOption(),
MultiOpacity: MultiOpacity.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
TextPosition: TextPosition.ToOption(),
MultiTextPosition: MultiTextPosition.ToOption(),
MarkerColor: MarkerColor.ToOption(),
MarkerColorScale: MarkerColorScale.ToOption(),
MarkerOutline: MarkerOutline.ToOption(),
MarkerSymbol: MarkerSymbol.ToOption(),
MultiMarkerSymbol: MultiMarkerSymbol.ToOption(),
Marker: Marker.ToOption(),
LineColor: LineColor.ToOption(),
LineColorScale: LineColorScale.ToOption(),
LineWidth: LineWidth.ToOption(),
LineDash: LineDash.ToOption(),
Line: Line.ToOption(),
LocationMode: LocationMode.ToOption(),
GeoJson: GeoJson.ToOption(),
FeatureIdKey: FeatureIdKey.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a BubbleGeo chart.
///
/// In general, BubbleGeo Plots plot two-dimensional data as points using plotly's base geo map, additionally using the point size as a third dimension.
///
/// Sets the longitude coordinates (in degrees East).
/// Sets the latitude coordinates (in degrees North).
/// Sets the size of the points.
/// Sets the trace name. The trace name appear as the legend item and on hover
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the opactity of the trace
/// Sets the opactity of individual datum markers
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the position of text associated with each datum
/// Sets the position of text associated with individual datum
/// Sets the color of the marker
/// Sets the colorscale of the marker
/// Sets the outline of the marker
/// Sets the marker symbol for each datum
/// Sets the marker symbol for each individual datum
/// Sets the marker (use this for more finegrained control than the other marker-associated arguments)
/// Determines the set of locations used to match entries in `locations` to regions on the map. Values "ISO-3", "USA-states", "country names" correspond to features on the base map and value "geojson-id" corresponds to features from a custom GeoJSON linked to the `geojson` attribute.
/// Sets optional GeoJSON data associated with this trace. If not given, the features on the base map are used. It can be set as a valid GeoJSON object or as a URL string. Note that we only accept GeoJSONs of type "FeatureCollection" or "Feature" with geometries of type "Polygon" or "MultiPolygon".
/// Sets the key in GeoJSON features which is used as id to match the items included in the `locations` array. Only has an effect when `geojson` is set. Support nested property, for example "properties.name".
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart BubbleGeo(
IEnumerable longitudes,
IEnumerable latitudes,
IEnumerable sizes,
Optional Name = default,
Optional ShowLegend = default,
Optional Opacity = default,
Optional> MultiOpacity = default,
Optional Text = default,
Optional> MultiText = default,
Optional TextPosition = default,
Optional> MultiTextPosition = default,
Optional MarkerColor = default,
Optional MarkerColorScale = default,
Optional MarkerOutline = default,
Optional MarkerSymbol = default,
Optional> MultiMarkerSymbol = default,
Optional Marker = default,
Optional LocationMode = default,
Optional GeoJson = default,
Optional FeatureIdKey = default,
Optional UseDefaults = default
)
where LongitudesType : IConvertible
where LatitudesType : IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Geo.Chart.BubbleGeo(
longitudes: longitudes,
latitudes: latitudes,
sizes: sizes,
Name: Name.ToOption(),
ShowLegend: ShowLegend.ToOption(),
Opacity: Opacity.ToOption(),
MultiOpacity: MultiOpacity.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
TextPosition: TextPosition.ToOption(),
MultiTextPosition: MultiTextPosition.ToOption(),
MarkerColor: MarkerColor.ToOption(),
MarkerColorScale: MarkerColorScale.ToOption(),
MarkerOutline: MarkerOutline.ToOption(),
MarkerSymbol: MarkerSymbol.ToOption(),
MultiMarkerSymbol: MultiMarkerSymbol.ToOption(),
Marker: Marker.ToOption(),
LocationMode: LocationMode.ToOption(),
GeoJson: GeoJson.ToOption(),
FeatureIdKey: FeatureIdKey.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a ScatterMapbox chart, where data is visualized on a geographic map using mapbox.
///
/// Customize the mapbox layers, style, etc. by using Chart.withMapbox.
///
/// You might need a Mapbox token, which you can also configure with Chart.withMapbox.
///
/// ScatterMapbox charts are the basis of PointMapbox, LineMapbox, and BubbleMapbox Charts, and can be customized as such. We also provide abstractions for those: Chart.PointMapbox, Chart.LineMapbox, Chart.BubbleMapbox
///
/// Sets the longitude coordinates (in degrees East).
/// Sets the latitude coordinates (in degrees North).
/// Determines the drawing mode for this scatter trace.
/// Sets the base mapbox layer. Default is `OpenStreetMap`. Note that you will need an access token for some Mapbox presets.
/// Sets the trace name. The trace name appear as the legend item and on hover
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the opactity of the trace
/// Sets the opactity of individual datum markers
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the position of text associated with each datum
/// Sets the position of text associated with individual datum
/// Sets the color of the marker
/// Sets the colorscale of the marker
/// Sets the outline of the marker
/// Sets the marker symbol for each datum
/// Sets the marker symbol for each individual datum
/// Sets the marker (use this for more finegrained control than the other marker-associated arguments)
/// Sets the color of the line
/// Sets the colorscale of the line
/// Sets the width of the line
/// sets the drawing style of the line
/// Sets the line (use this for more finegrained control than the other line-associated arguments)
/// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''".
/// Whether or not to enable clustering for points
/// Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments)
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart ScatterMapbox(
IEnumerable longitudes,
IEnumerable latitudes,
StyleParam.Mode mode,
Optional MapboxStyle = default,
Optional Name = default,
Optional ShowLegend = default,
Optional Opacity = default,
Optional> MultiOpacity = default,
Optional Text = default,
Optional> MultiText = default,
Optional TextPosition = default,
Optional> MultiTextPosition = default,
Optional MarkerColor = default,
Optional MarkerColorScale = default,
Optional MarkerOutline = default,
Optional MarkerSymbol = default,
Optional> MultiMarkerSymbol = default,
Optional Marker = default,
Optional LineColor = default,
Optional LineColorScale = default,
Optional LineWidth = default,
Optional LineDash = default,
Optional Line = default,
Optional Below = default,
Optional EnableClustering = default,
Optional Cluster = default,
Optional UseDefaults = default
)
where LongitudesType : IConvertible
where LatitudesType : IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Mapbox.Chart.ScatterMapbox(
longitudes: longitudes,
latitudes: latitudes,
mode: mode,
MapboxStyle: MapboxStyle.ToOption(),
Name: Name.ToOption(),
ShowLegend: ShowLegend.ToOption(),
Opacity: Opacity.ToOption(),
MultiOpacity: MultiOpacity.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
TextPosition: TextPosition.ToOption(),
MultiTextPosition: MultiTextPosition.ToOption(),
MarkerColor: MarkerColor.ToOption(),
MarkerColorScale: MarkerColorScale.ToOption(),
MarkerOutline: MarkerOutline.ToOption(),
MarkerSymbol: MarkerSymbol.ToOption(),
MultiMarkerSymbol: MultiMarkerSymbol.ToOption(),
Marker: Marker.ToOption(),
LineColor: LineColor.ToOption(),
LineColorScale: LineColorScale.ToOption(),
LineWidth: LineWidth.ToOption(),
LineDash: LineDash.ToOption(),
Line: Line.ToOption(),
Below: Below.ToOption(),
EnableClustering: EnableClustering.ToOption(),
Cluster: Cluster.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a PointMapbox chart, where data is visualized on a geographic map as points using mapbox.
///
/// Customize the mapbox layers, style, etc. by using Chart.withMapbox.
///
/// You might need a Mapbox token, which you can also configure with Chart.withMapbox.
///
/// Sets the longitude coordinates (in degrees East).
/// Sets the latitude coordinates (in degrees North).
/// Sets the trace name. The trace name appear as the legend item and on hover
/// Sets the base mapbox layer. Default is `OpenStreetMap`. Note that you will need an access token for some Mapbox presets.
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the opactity of the trace
/// Sets the opactity of individual datum markers
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the position of text associated with each datum
/// Sets the position of text associated with individual datum
/// Sets the color of the marker
/// Sets the colorscale of the marker
/// Sets the outline of the marker
/// Sets the marker symbol for each datum
/// Sets the marker symbol for each individual datum
/// Sets the marker (use this for more finegrained control than the other marker-associated arguments)
/// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''".
/// Whether or not to enable clustering for points
/// Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments)
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart PointMapbox(
IEnumerable longitudes,
IEnumerable latitudes,
Optional Name = default,
Optional MapboxStyle = default,
Optional ShowLegend = default,
Optional Opacity = default,
Optional> MultiOpacity = default,
Optional Text = default,
Optional> MultiText = default,
Optional TextPosition = default,
Optional> MultiTextPosition = default,
Optional MarkerColor = default,
Optional MarkerColorScale = default,
Optional MarkerOutline = default,
Optional MarkerSymbol = default,
Optional> MultiMarkerSymbol = default,
Optional Marker = default,
Optional Below = default,
Optional EnableClustering = default,
Optional Cluster = default,
Optional UseDefaults = default
)
where LongitudesType : IConvertible
where LatitudesType : IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Mapbox.Chart.PointMapbox(
longitudes: longitudes,
latitudes: latitudes,
Name: Name.ToOption(),
MapboxStyle: MapboxStyle.ToOption(),
ShowLegend: ShowLegend.ToOption(),
Opacity: Opacity.ToOption(),
MultiOpacity: MultiOpacity.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
TextPosition: TextPosition.ToOption(),
MultiTextPosition: MultiTextPosition.ToOption(),
MarkerColor: MarkerColor.ToOption(),
MarkerColorScale: MarkerColorScale.ToOption(),
MarkerOutline: MarkerOutline.ToOption(),
MarkerSymbol: MarkerSymbol.ToOption(),
MultiMarkerSymbol: MultiMarkerSymbol.ToOption(),
Marker: Marker.ToOption(),
Below: Below.ToOption(),
EnableClustering: EnableClustering.ToOption(),
Cluster: Cluster.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a LineMapbox chart, where data is visualized on a geographic map connected by a line using mapbox.
///
/// Customize the mapbox layers, style, etc. by using Chart.withMapbox.
///
/// You might need a Mapbox token, which you can also configure with Chart.withMapbox.
///
/// Sets the longitude coordinates (in degrees East).
/// Sets the latitude coordinates (in degrees North).
///
/// Sets the trace name. The trace name appear as the legend item and on hover
/// Sets the base mapbox layer. Default is `OpenStreetMap`. Note that you will need an access token for some Mapbox presets.
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the opactity of the trace
/// Sets the opactity of individual datum markers
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the position of text associated with each datum
/// Sets the position of text associated with individual datum
/// Sets the color of the marker
/// Sets the colorscale of the marker
/// Sets the outline of the marker
/// Sets the marker symbol for each datum
/// Sets the marker symbol for each individual datum
/// Sets the marker (use this for more finegrained control than the other marker-associated arguments)
/// Sets the color of the line
/// Sets the colorscale of the line
/// Sets the width of the line
/// sets the drawing style of the line
/// Sets the line (use this for more finegrained control than the other line-associated arguments)
/// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''".
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart LineMapbox(
IEnumerable longitudes,
IEnumerable latitudes,
Optional ShowMarkers = default,
Optional Name = default,
Optional MapboxStyle = default,
Optional ShowLegend = default,
Optional Opacity = default,
Optional> MultiOpacity = default,
Optional Text = default,
Optional> MultiText = default,
Optional TextPosition = default,
Optional> MultiTextPosition = default,
Optional MarkerColor = default,
Optional MarkerColorScale = default,
Optional MarkerOutline = default,
Optional MarkerSymbol = default,
Optional> MultiMarkerSymbol = default,
Optional Marker = default,
Optional LineColor = default,
Optional LineColorScale = default,
Optional LineWidth = default,
Optional LineDash = default,
Optional Line = default,
Optional Below = default,
Optional UseDefaults = default
)
where LongitudesType : IConvertible
where LatitudesType : IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Mapbox.Chart.LineMapbox(
longitudes: longitudes,
latitudes: latitudes,
ShowMarkers: ShowMarkers.ToOption(),
Name: Name.ToOption(),
MapboxStyle: MapboxStyle.ToOption(),
ShowLegend: ShowLegend.ToOption(),
Opacity: Opacity.ToOption(),
MultiOpacity: MultiOpacity.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
TextPosition: TextPosition.ToOption(),
MultiTextPosition: MultiTextPosition.ToOption(),
MarkerColor: MarkerColor.ToOption(),
MarkerColorScale: MarkerColorScale.ToOption(),
MarkerOutline: MarkerOutline.ToOption(),
MarkerSymbol: MarkerSymbol.ToOption(),
MultiMarkerSymbol: MultiMarkerSymbol.ToOption(),
Marker: Marker.ToOption(),
LineColor: LineColor.ToOption(),
LineColorScale: LineColorScale.ToOption(),
LineWidth: LineWidth.ToOption(),
LineDash: LineDash.ToOption(),
Line: Line.ToOption(),
Below: Below.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a BubbleMapbox chart, where data is visualized on a geographic map as points using mapbox, additionally using the point size as a third dimension.
///
/// Customize the mapbox layers, style, etc. by using Chart.withMapbox.
///
/// You might need a Mapbox token, which you can also configure with Chart.withMapbox.
///
/// Sets the longitude coordinates (in degrees East).
/// Sets the latitude coordinates (in degrees North).
/// Sets the size of the points.
/// Sets the trace name. The trace name appear as the legend item and on hover
/// Sets the base mapbox layer. Default is `OpenStreetMap`. Note that you will need an access token for some Mapbox presets.
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the opactity of the trace
/// Sets the opactity of individual datum markers
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the position of text associated with each datum
/// Sets the position of text associated with individual datum
/// Sets the color of the marker
/// Sets the colorscale of the marker
/// Sets the outline of the marker
/// Sets the marker symbol for each datum
/// Sets the marker symbol for each individual datum
/// Sets the marker (use this for more finegrained control than the other marker-associated arguments)
/// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''".
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart BubbleMapbox(
IEnumerable longitudes,
IEnumerable latitudes,
IEnumerable sizes,
Optional Name = default,
Optional MapboxStyle = default,
Optional ShowLegend = default,
Optional Opacity = default,
Optional> MultiOpacity = default,
Optional Text = default,
Optional> MultiText = default,
Optional TextPosition = default,
Optional> MultiTextPosition = default,
Optional MarkerColor = default,
Optional MarkerColorScale = default,
Optional MarkerOutline = default,
Optional MarkerSymbol = default,
Optional> MultiMarkerSymbol = default,
Optional Marker = default,
Optional Below = default,
Optional UseDefaults = default
)
where LongitudesType : IConvertible
where LatitudesType : IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Mapbox.Chart.BubbleMapbox(
longitudes: longitudes,
latitudes: latitudes,
sizes: sizes,
Name: Name.ToOption(),
MapboxStyle: MapboxStyle.ToOption(),
ShowLegend: ShowLegend.ToOption(),
Opacity: Opacity.ToOption(),
MultiOpacity: MultiOpacity.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
TextPosition: TextPosition.ToOption(),
MultiTextPosition: MultiTextPosition.ToOption(),
MarkerColor: MarkerColor.ToOption(),
MarkerColorScale: MarkerColorScale.ToOption(),
MarkerOutline: MarkerOutline.ToOption(),
MarkerSymbol: MarkerSymbol.ToOption(),
MultiMarkerSymbol: MultiMarkerSymbol.ToOption(),
Marker: Marker.ToOption(),
Below: Below.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a choropleth map using mapbox.
///
/// A choropleth map is a type of thematic map in which a set of pre-defined areas is colored or patterned in proportion to a statistical variable that represents an aggregate summary of a geographic characteristic within each area, such as population density or per-capita income.
///
/// GeoJSON features to be filled are set in `geojson` The data that describes the choropleth value-to-color mapping is set in `locations` and `z`.
///
/// Customize the mapbox layers, style, etc. by using Chart.withMapbox.
///
/// You might need a Mapbox token, which you can also configure with Chart.withMapbox.
///
/// Sets the coordinates via location IDs or names. Coordinates correspond to the centroid of each location given. See `locationmode` for more info.
/// The color values for each location
/// Sets the GeoJSON data associated with this trace. It can be set as a valid GeoJSON object or as a URL string. Note that we only accept GeoJSONs of type "FeatureCollection" or "Feature" with geometries of type "Polygon" or "MultiPolygon".
/// Sets the trace name. The trace name appear as the legend item and on hover.
/// Sets the base mapbox layer. Default is `OpenStreetMap`. Note that you will need an access token for some Mapbox presets.
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the key in GeoJSON features which is used as id to match the items included in the `locations` array. Support nested property, for example "properties.name".
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the colorbar.
/// Sets the colorscale.
/// Determines whether or not a colorbar is displayed for this trace.
/// Reverses the color mapping if true.
/// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''".
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart ChoroplethMapbox(
IEnumerable locations,
IEnumerable z,
object geoJson,
Optional Name = default,
Optional MapboxStyle = default,
Optional ShowLegend = default,
Optional FeatureIdKey = default,
Optional Text = default,
Optional> MultiText = default,
Optional ColorBar = default,
Optional ColorScale = default,
Optional ShowScale = default,
Optional ReverseScale = default,
Optional Below = default,
Optional UseDefaults = default
)
where ZType : IConvertible
where TextType : IConvertible
=>
Plotly.NET.ChartMap_Density.Chart.ChoroplethMapbox(
locations: locations,
z: z,
Name: Name.ToOption(),
MapboxStyle: MapboxStyle.ToOption(),
ShowLegend: ShowLegend.ToOption(),
geoJson: geoJson,
FeatureIdKey: FeatureIdKey.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
ColorBar: ColorBar.ToOption(),
ColorScale: ColorScale.ToOption(),
ShowScale: ShowScale.ToOption(),
ReverseScale: ReverseScale.ToOption(),
Below: Below.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
///
/// Creates a DensityMapbox Chart that draws a bivariate kernel density estimation with a Gaussian kernel from `lon` and `lat` coordinates and optional `z` values using a colorscale.
///
/// Customize the mapbox layers, style, etc. by using Chart.withMapbox.
///
/// You might need a Mapbox token, which you can also configure with Chart.withMapbox.
///
/// Sets the longitude coordinates (in degrees East).
/// Sets the latitude coordinates (in degrees North).
/// Sets the trace name. The trace name appear as the legend item and on hover.
/// Sets the base mapbox layer. Default is `OpenStreetMap`. Note that you will need an access token for some Mapbox presets.
/// Determines whether or not an item corresponding to this trace is shown in the legend.
/// Sets the opacity of the trace
/// Sets the points' weight. For example, a value of 10 would be equivalent to having 10 points of weight 1 in the same spot
/// Sets the radius of influence of one `lon` / `lat` point in pixels. Increasing the value makes the densitymapbox trace smoother, but less detailed.
/// Sets a text associated with each datum
/// Sets individual text for each datum
/// Sets the colorbar.
/// Sets the colorscale.
/// Determines whether or not a colorbar is displayed for this trace.
/// Reverses the color mapping if true.
/// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''".
/// If set to false, ignore the global default settings set in `Defaults`
public static GenericChart DensityMapbox(
IEnumerable longitudes,
IEnumerable latitudes,
Optional Name = default,
Optional MapboxStyle = default,
Optional ShowLegend = default,
Optional Opacity = default,
Optional> Z = default,
Optional Radius = default,
Optional Text = default,
Optional> MultiText = default,
Optional ColorBar = default,
Optional ColorScale = default,
Optional ShowScale = default,
Optional ReverseScale = default,
Optional Below = default,
Optional UseDefaults = default
)
where LongitudesType: IConvertible
where LatitudesType: IConvertible
where ZType: IConvertible
where TextType: IConvertible
=>
Plotly.NET.ChartMap_Density.Chart.DensityMapbox(
longitudes: longitudes,
latitudes: latitudes,
Name: Name.ToOption(),
MapboxStyle: MapboxStyle.ToOption(),
ShowLegend: ShowLegend.ToOption(),
Opacity: Opacity.ToOption(),
Z: Z.ToOption(),
Radius: Radius.ToOption(),
Text: Text.ToOption(),
MultiText: MultiText.ToOption(),
ColorBar: ColorBar.ToOption(),
ColorScale: ColorScale.ToOption(),
ShowScale: ShowScale.ToOption(),
ReverseScale: ReverseScale.ToOption(),
Below: Below.ToOption(),
UseDefaults: UseDefaults.ToOption()
);
}
}