Jiwift

[iOS/Swift] DGCharts 그래프 라이브러리 lineDashLengths | line graph dash, 라인 그래프 점선, 길이 본문

라이브러리/DGCharts

[iOS/Swift] DGCharts 그래프 라이브러리 lineDashLengths | line graph dash, 라인 그래프 점선, 길이

지위프트 2023. 1. 13. 03:03
반응형

 

// 라인 Dash 길이
lineChartdataSet.lineDashLengths = [10]

 적용을 원하는 라인 그래프 데이터 셋에 위 메서드를 적용해주세요.

 

/// This is the actual dash pattern.
/// I.e. [2, 3] will paint [--   --   ]
/// [1, 3, 4, 2] will paint [-   ----  -   ----  ]
// 라인 Dash 길이
lineChartdataSet.lineDashLengths = [5, 10, 15]

 Array 형식을 채워주면 위와 같이 적용됩니다. Array 순서로 선과 공백 길이를 적용 [5, 10, 15]는 [5선, 10공백, 15선] 방식으로 반복 전용

 

SwiftExample/LineChartViewController.swift at main · wlxo0401/SwiftExample (github.com)

 

GitHub - wlxo0401/SwiftExample: My study, record and share

My study, record and share. Contribute to wlxo0401/SwiftExample development by creating an account on GitHub.

github.com

 

반응형