LineChartDataPoint
        Inherits: BaseControl
A LineChartData point.
Properties
- 
          point(bool | ChartPointShape | None) –Defines the appearance and shape of a line point. 
- 
          selected(bool) –Draw the point as selected when LineChart.interactive
- 
          selected_below_line(bool | ChartPointLine | None) –A vertical line drawn between selected line point and the bottom adge of the chart. 
- 
          selected_point(bool | ChartPointShape | None) –Defines the appearance and shape of a selected line point. 
- 
          show_above_line(bool) –Whether to display a line above data point. 
- 
          show_below_line(bool) –Whether to display a line below data point. 
- 
          show_tooltip(bool) –Whether the tooltipshould be shown when this data point is hovered over.
- 
          tooltip(str | LineChartDataPointTooltip) –Configuration of the tooltip for this data point. 
- 
          x(Number) –The position of a point on Xaxis.
- 
          y(Number) –The position of a point on Yaxis.
Properties#
class-attribute
      instance-attribute
  
#
point: bool | ChartPointShape | None = None
Defines the appearance and shape of a line point.
class-attribute
      instance-attribute
  
#
selected: bool = False
Draw the point as selected when LineChart.interactive
is set to False.
class-attribute
      instance-attribute
  
#
selected_below_line: bool | ChartPointLine | None = None
A vertical line drawn between selected line point and the bottom adge of the chart.
The value is either True - draw a line with default style, False - do not draw a
line under selected point, or an instance of ChartPointLine class to
specify line style to draw.
class-attribute
      instance-attribute
  
#
selected_point: bool | ChartPointShape | None = None
Defines the appearance and shape of a selected line point.
class-attribute
      instance-attribute
  
#
show_above_line: bool = True
Whether to display a line above data point.
class-attribute
      instance-attribute
  
#
show_below_line: bool = True
Whether to display a line below data point.
class-attribute
      instance-attribute
  
#
show_tooltip: bool = True
Whether the tooltip should be shown when this data point is hovered over.
class-attribute
      instance-attribute
  
#
tooltip: str | LineChartDataPointTooltip = field(
    default_factory=lambda: LineChartDataPointTooltip()
)
Configuration of the tooltip for this data point.