All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fujion.plotly.plot.PlotScatter3D Maven / Gradle / Ivy

The newest version!
/*
 * #%L
 * fujion
 * %%
 * Copyright (C) 2021 Fujion Framework
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * #L%
 */
package org.fujion.plotly.plot;

import org.fujion.annotation.Option;
import org.fujion.plotly.common.CalendarTypeEnum;
import org.fujion.plotly.common.FontOptions;
import org.fujion.plotly.common.ProjectionOptions;
import org.fujion.plotly.common.TextPositionEnum;

/**
 * Options for 3D scatter plot.
 * 

* A 3D scatter plot uses x, y and z coordinates to display values for three variables for a set of * data. */ public class PlotScatter3D extends PlotOptions { /** * Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are * connected. */ @Option public Boolean connectgaps; /** * Options for x-axis error bars. */ @Option public final ErrorBarOptions error_x = new ErrorBarOptions(); /** * Options for y-axis error bars. */ @Option public final ErrorBarOptions error_y = new ErrorBarOptions(); /** * Options for z-axis error bars. */ @Option public final ErrorBarOptions error_z = new ErrorBarOptions(); /** * Text elements associated with each (x,y,z) triplet as an array of string where the items are * mapped in order to the this trace's (x,y,z) coordinates. To be seen, trace "hoverinfo" must * contain a "text" flag. */ @Option("hovertext") public String[] hovertext$array; /** * Text elements associated with each (x,y,z) triplet as a single string that appears over all * the data points. If an array of string, the items are mapped in order to the this trace's * (x,y,z) coordinates. To be seen, trace "hoverinfo" must contain a "text" flag. */ @Option("hovertext") public String hovertext$string; /** * Style options for the line. */ @Option public final LineOptions line = new LineOptions(); /** * Options for marker. */ @Option public final MarkerOptions marker = new MarkerOptions(); /** * Any combination of "lines", "markers", "text" joined with a "+" OR "none". examples: "lines", * "markers", "lines+markers", "lines+markers+text", "none" default: "lines+markers" Determines * the drawing mode for this scatter trace. If the provided "mode" includes "text" then the * "text" elements appear at the coordinates. Otherwise, the "text" elements appear on hover. If * there are less than 20 points, then the default is "lines+markers". Otherwise, "lines". */ @Option public String mode; /** * Projection options for x axis. */ @Option("projection.x") public final ProjectionOptions projection_x = new ProjectionOptions(); /** * Projection options for y axis. */ @Option("projection.y") public final ProjectionOptions projection_y = new ProjectionOptions(); /** * Projection options for z axis. */ @Option("projection.z") public final ProjectionOptions projection_z = new ProjectionOptions(); /** * Reference between this trace's 3D coordinate system and a 3D scene. If "scene" (the default * value), the (x,y,z) coordinates refer to "layout.scene". If "scene2", the (x,y,z) coordinates * refer to "layout.scene2", and so on. */ @Option public String scene; /** * If "-1" (the default), the scatter points are not filled with a surface. If "0", "1", "2", * the scatter points are filled with a Delaunay surface about the x, y, z respectively. */ @Option public Integer surfaceaxis; /** * The surface fill color. */ @Option public String surfacecolor; /** * Text elements associated with each (x,y,z) triplet as an array of strings where the items are * mapped in order to the this trace's (x,y,z) coordinates. If trace "hoverinfo" contains a * "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. */ @Option("text") public String[] text$array; /** * Text elements associated with each (x,y,z) triplet as a single string that appears over all * the data points. If trace "hoverinfo" contains a "text" flag and "hovertext" is not set, * these elements will be seen in the hover labels. */ @Option("text") public String text$string; /** * The text font. */ @Option public final FontOptions textfont = new FontOptions(); /** * The positions of the "text" elements with respects to the (x,y) coordinates. *

* Default: TOP_CENTER */ @Option public TextPositionEnum textposition; /** * Data points for x-axis. */ @Option public Object[] x; /** * Data points for x-axis. Alternate form for numeric data. */ @Option("x") public double[] x$number; /** * The calendar system to use with "x" date data. *

* Default: GREGORIAN */ @Option public CalendarTypeEnum xcalendar; /** * Data points for y-axis. */ @Option public Object[] y; /** * Data points for y-axis. Alternate form for numeric data. */ @Option("y") public double[] y$number; /** * The calendar system to use with "y" date data. *

* Default: GREGORIAN */ @Option public CalendarTypeEnum ycalendar; /** * Data points for z-axis. */ @Option public Object[] z; /** * Data points for z-axis. Alternate form for numeric data. */ @Option("z") public double[] z$number; /** * The calendar system to use with "z" date data. *

* Default: GREGORIAN */ @Option public CalendarTypeEnum zcalendar; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy