Lines Matching defs:style
402 * @brief Defines the style for the top, bottom, and frontmost points in a line chart.
416 * @brief Sets the style of the frontmost point on a polyline.
418 * @param style Indicates the style to set. For details, see {@link PointStyle}.
422 void SetHeadPointStyle(const PointStyle& style)
424 headPointStyle_ = style;
428 * @brief Sets the style of the top point of a polyline.
430 * @param style Indicates the style to set. For details, see {@link PointStyle}.
434 void SetTopPointStyle(const PointStyle& style)
436 topPointStyle_ = style;
440 * @brief Sets the style of the bottom point of a polyline.
442 * @param style Indicates the style to set. For details, see {@link PointStyle}.
446 void SetBottomPointStyle(const PointStyle& style)
448 bottomPointStyle_ = style;
452 * @brief Obtains the style of the frontmost point on a polyline.
454 * @return Returns the style of the point. For details, see {@link PointStyle}.
464 * @brief Obtains the style of the top point of a polyline.
466 * @return Returns the style of the point. For details, see {@link PointStyle}.
476 * @brief Obtains the style of the bottom point of a polyline.
478 * @return Returns the style of the point. For details, see {@link PointStyle}.
593 void RefreshInvalidateRect(uint16_t pointIndex, const PointStyle& style);
595 void DoDrawPoint(BufferInfo& gfxDstBuffer, const Point& point, const PointStyle& style, const Rect& mask);