/** * Sets series options with an array of objects, each describing the format of the corresponding * series in the chart. * * @param series an array of the corresponding series objects */ public final void setSeries(ScatterChartSeries... series) { setSeries(ArrayHelper.createArray(series)); }
/** * Sets the style of dashed lines.<br> * The first number indicates the length of a dash, and the second indicates the gap after it. If * there is a third number, that's the length of the next dash, and a fourth number, if present, * is the length of the next gap. * * @param lineDashStyle */ public final void setLineDashStyle(int... lineDashStyle) { setLineDashStyle(ArrayHelper.createArray(lineDashStyle)); }