Class LineChartOptions
- java.lang.Object
- 
- org.apache.syncope.client.console.chartjs.ChartOptions
- 
- org.apache.syncope.client.console.chartjs.LineChartOptions
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class LineChartOptions extends ChartOptions Provides options forLine.- See Also:
- Serialized Form
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class org.apache.syncope.client.console.chartjs.ChartOptionsChartOptions.Axis, ChartOptions.Scales
 
- 
 - 
Constructor SummaryConstructors Constructor Description LineChartOptions()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetBezierCurve()Gets the bezier curve.BooleangetDatasetFill()Gets the dataset fill.BooleangetDatasetStroke()Gets the dataset stroke.IntegergetDatasetStrokeWidth()Gets the dataset stroke width.StringgetLegendTemplate()BooleangetPointDot()Gets the point dot.IntegergetPointDotRadius()Gets the point dot radius.IntegergetPointDotStrokeWidth()Gets the point dot stroke width.IntegergetPointHitDetectionRadius()BooleangetScaleShowHorizontalLines()BooleangetScaleShowVerticalLines()BooleangetShowLine()DoublegetTension()voidsetBezierCurve(Boolean bezierCurve)Sets the bezier curve.voidsetDatasetFill(Boolean datasetFill)Sets the dataset fill.voidsetDatasetStroke(Boolean datasetStroke)Sets the dataset stroke.voidsetDatasetStrokeWidth(Integer datasetStrokeWidth)Sets the dataset stroke width.voidsetLegendTemplate(String legendTemplate)voidsetPointDot(Boolean pointDot)Sets the point dot.voidsetPointDotRadius(Integer pointDotRadius)Sets the point dot radius.voidsetPointDotStrokeWidth(Integer pointDotStrokeWidth)Sets the point dot stroke width.voidsetPointHitDetectionRadius(Integer pointHitDetectionRadius)voidsetScaleShowHorizontalLines(Boolean scaleShowHorizontalLines)voidsetScaleShowVerticalLines(Boolean scaleShowVerticalLines)voidsetShowLine(Boolean showLine)voidsetTension(Double tension)- 
Methods inherited from class org.apache.syncope.client.console.chartjs.ChartOptionsgetAnimation, getAnimationEasing, getAnimationSteps, getCustomTooltips, getMaintainAspectRatio, getMultiTooltipTemplate, getOnAnimationComplete, getOnAnimationProgress, getResponsive, getScales, getShowTooltips, getTooltipCaretSize, getTooltipCornerRadius, getTooltipEvents, getTooltipFillColor, getTooltipFontColor, getTooltipFontFamily, getTooltipFontSize, getTooltipFontStyle, getTooltipTemplate, getTooltipTitleFontColor, getTooltipTitleFontFamily, getTooltipTitleFontSize, getTooltipTitleFontStyle, getTooltipXOffset, getTooltipXPadding, getTooltipYPadding, isResponsive, setAnimation, setAnimationEasing, setAnimationSteps, setCustomTooltips, setMaintainAspectRatio, setMultiTooltipTemplate, setOnAnimationComplete, setOnAnimationProgress, setResponsive, setResponsive, setScales, setShowTooltips, setTooltipCaretSize, setTooltipCornerRadius, setTooltipEvents, setTooltipFillColor, setTooltipFontColor, setTooltipFontFamily, setTooltipFontSize, setTooltipFontStyle, setTooltipTemplate, setTooltipTitleFontColor, setTooltipTitleFontFamily, setTooltipTitleFontSize, setTooltipTitleFontStyle, setTooltipXOffset, setTooltipXPadding, setTooltipYPadding
 
- 
 
- 
- 
- 
Method Detail- 
getScaleShowHorizontalLinespublic Boolean getScaleShowHorizontalLines() 
 - 
setScaleShowHorizontalLinespublic void setScaleShowHorizontalLines(Boolean scaleShowHorizontalLines) 
 - 
getScaleShowVerticalLinespublic Boolean getScaleShowVerticalLines() 
 - 
setScaleShowVerticalLinespublic void setScaleShowVerticalLines(Boolean scaleShowVerticalLines) 
 - 
getPointHitDetectionRadiuspublic Integer getPointHitDetectionRadius() 
 - 
setPointHitDetectionRadiuspublic void setPointHitDetectionRadius(Integer pointHitDetectionRadius) 
 - 
getLegendTemplatepublic String getLegendTemplate() 
 - 
setLegendTemplatepublic void setLegendTemplate(String legendTemplate) 
 - 
getBezierCurvepublic Boolean getBezierCurve() Gets the bezier curve.- Returns:
- the bezier curve
 
 - 
setBezierCurvepublic void setBezierCurve(Boolean bezierCurve) Sets the bezier curve.- Parameters:
- bezierCurve- decides whether the line is curved between points (default is true).
 
 - 
getPointDotpublic Boolean getPointDot() Gets the point dot.- Returns:
- the point dot
 
 - 
setPointDotpublic void setPointDot(Boolean pointDot) Sets the point dot.- Parameters:
- pointDot- decides whether to show a dot for each point (default is true).
 
 - 
getPointDotRadiuspublic Integer getPointDotRadius() Gets the point dot radius.- Returns:
- the point dot radius
 
 - 
setPointDotRadiuspublic void setPointDotRadius(Integer pointDotRadius) Sets the point dot radius.- Parameters:
- pointDotRadius- the new point dot radius (default is 3).
 
 - 
getPointDotStrokeWidthpublic Integer getPointDotStrokeWidth() Gets the point dot stroke width.- Returns:
- the point dot stroke width
 
 - 
setPointDotStrokeWidthpublic void setPointDotStrokeWidth(Integer pointDotStrokeWidth) Sets the point dot stroke width.- Parameters:
- pointDotStrokeWidth- the new point dot stroke width (default is 1).
 
 - 
getDatasetStrokepublic Boolean getDatasetStroke() Gets the dataset stroke.- Returns:
- the dataset stroke
 
 - 
setDatasetStrokepublic void setDatasetStroke(Boolean datasetStroke) Sets the dataset stroke.- Parameters:
- datasetStroke- decides whether to show a stroke for datasets (default is true)
 
 - 
getDatasetStrokeWidthpublic Integer getDatasetStrokeWidth() Gets the dataset stroke width.- Returns:
- the dataset stroke width
 
 - 
setDatasetStrokeWidthpublic void setDatasetStrokeWidth(Integer datasetStrokeWidth) Sets the dataset stroke width.- Parameters:
- datasetStrokeWidth- the new dataset stroke width (default is 2).
 
 - 
getDatasetFillpublic Boolean getDatasetFill() Gets the dataset fill.- Returns:
- the dataset fill
 
 - 
setDatasetFillpublic void setDatasetFill(Boolean datasetFill) Sets the dataset fill.- Parameters:
- datasetFill- whether to fill the dataset with a color (default is true)
 
 - 
getShowLinepublic Boolean getShowLine() 
 - 
setShowLinepublic void setShowLine(Boolean showLine) 
 - 
getTensionpublic Double getTension() 
 - 
setTensionpublic void setTension(Double tension) 
 
- 
 
-