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

org.fujion.highcharts.PlotErrorBar Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
/*
 * #%L
 * fujion
 * %%
 * Copyright (C) 2008 - 2018 Regenstrief Institute, Inc.
 * %%
 * 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.highcharts;

import org.fujion.annotation.Option;

/**
 * Options for error bar plot.
 * 

* Error bars are a graphical representation of the variability of data and are used on graphs to * indicate the error, or uncertainty in a reported measurement. */ public class PlotErrorBar extends PlotOptions { /** * Depth of the columns in a 3D column chart. Requires highcharts-3d.js. Defaults to 25. */ @Option public Integer depth; /** * 3D columns only. The color of the edges. Similar to borderColor, except it defaults to the * same color as the column. Defaults to undefined. */ @Option public String edgeColor; /** * 3D columns only. The width of the colored edges. Defaults to 1. */ @Option public Integer edgeWidth; /** * Whether to group non-stacked columns or to let them render independent of each other. * Non-grouped columns will be laid out individually and overlap each other. Defaults to true. */ @Option public Boolean grouping; /** * The maximum allowed pixel width for a column, translated to the height of a bar in a bar * chart. This prevents the columns from becoming too wide when there is a small number of * points in the chart. Defaults to null. */ @Option public Integer maxPointWidth; /** * The color of the median line. If null, the general series color applies. In styled mode, the * median stroke width can be set with the .highcharts-boxplot-median class. Defaults to null. */ @Option public String medianColor; /** * The X axis range that each point is valid for. This determines the width of the column. On a * categorized axis, the range will be 1 by default (one category unit). On linear and datetime * axes, the range will be computed as the distance between the two closest data points. */ @Option public Double pointRange; /** * A pixel value specifying a fixed width for each column or bar. When null, the width is * calculated from the pointPadding and groupPadding. Defaults to null. */ @Option public Integer pointWidth; /** * The color of the stem, the vertical line extending from the box to the whiskers. If null, the * series color is used. Defaults to null. */ @Option public String stemColor; /** * The dash style of the stem, the vertical line extending from the box to the whiskers. * Defaults to Solid. */ @Option public DashStyle stemDashStyle; /** * The width of the stem, the vertical line extending from the box to the whiskers. If null, the * width is inherited from the lineWidth option. Defaults to null. */ @Option public Integer stemWidth; /** * The color of the whiskers, the horizontal lines marking low and high values. When null, the * general series color is used. Defaults to null. */ @Option public String whiskerColor; /** * The line width of the whiskers, the horizontal lines marking low and high values. When null, * the general lineWidth applies. Defaults to null. */ @Option public Integer whiskerWidth; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy