라인 차트 데이터 형식
LineChart에서 사용되는 데이터, 이벤트, 콜백 및 런타임 형식.
import type { TimeSeriesData, MultiSeriesData } from "@sixtyfold/line";위에 표시된 공개 진입점을 사용하세요. 타입 전용 가져오기는 애플리케이션 JavaScript에서 제거됩니다.
BandBorderStyle
범위/밴드 테두리의 획 패턴
type BandBorderStyle = "solid" | "dashed" | "dotted"BarBorderStyle
막대/열 테두리의 획 패턴
type BarBorderStyle = "solid" | "dashed" | "dotted"KeyboardAnnouncementMessages
키보드 차트 동작 후에 방출되는 지역화 가능한 알림
interface KeyboardAnnouncementMessagesLegendAlign
사용 가능한 범례 영역에서의 범례 정렬
type LegendAlign = "left" | "center" | "right" | "middle"LegendLayout
범례 항목 흐름
type LegendLayout = "row" | "column"LegendPosition
차트 영역 주변의 범례 배치
type LegendPosition = "left" | "top" | "right" | "bottom"LegendSwatchShape
범례 색표 모양
type LegendSwatchShape = MarkerShape | "line"LineChartStats
활성 라인 데이터셋과 프레임에 대한 렌더러 및 상세도(LOD) 텔레메트리.
interface LineChartStatsLineSeriesType
라인 시리즈 그리기 스타일. "band"는 "range"의 동의어이고; "points"는 "scatter"의 동의어이며; "column"은 "bar"의 동의어입니다; "stackedArea"는 "stacked-area"의 동의어입니다.
type LineSeriesType = "line" | "range" | "band" | "scatter" | "points" | "bar" | "column" | "stacked-area" | "stackedArea" | "step" | "step-before" | "step-after" | "step-mid"MarkerShape
호버 포인트 표시기를 위한 마커 형태
type MarkerShape = "circle" | "square" | "diamond" | "triangle" | "cross" | "x"OverlayErrorCallback
오버레이 업데이트에서 하나 이상의 해상도 또는 전송 실패가 발생했을 때 호출됩니다.
type OverlayErrorCallback = (error: ChartOverlayError) => voidRendererErrorCallback
차트 렌더러가 실패하여 해체되기 직전에 한 번 호출됩니다.
type RendererErrorCallback = (error: ChartRendererError) => voidRendererFailurePhase
차트 렌더러가 작동을 멈춘 단계.
type RendererFailurePhase = "initialization" | "runtime"SeriesVisibilityChangeEvent
라인 시리즈 가시성 변경에 대한 전체 가시성 상태 및 출처.
interface SeriesVisibilityChangeEventStackBorderStyle
스택형 영역 경계의 획 패턴
type StackBorderStyle = "solid" | "dashed" | "dotted"StackCurveStyle
스택형 영역 채우기 및 경계의 경계 형상
type StackCurveStyle = "linear" | "step" | "step-before" | "step-after" | "step-mid"