123456789101112131415161718192021222324252627282930 |
- //
- // RadarMarkerView.swift
- // ChartsDemo
- //
- // Copyright 2015 Daniel Cohen Gindi & Philipp Jahoda
- // A port of MPAndroidChart for iOS
- // Licensed under Apache License 2.0
- //
- // https://github.com/danielgindi/Charts
- //
- import Foundation
- import DGCharts
- #if canImport(UIKit)
- import UIKit
- #endif
- public class RadarMarkerView: MarkerView {
- @IBOutlet var label: UILabel!
-
- public override func awakeFromNib() {
- self.offset.x = -self.frame.size.width / 2.0
- self.offset.y = -self.frame.size.height - 7.0
- }
-
- public override func refreshContent(entry: ChartDataEntry, highlight: Highlight) {
- label.text = String.init(format: "%d %%", Int(round(entry.y)))
- layoutIfNeeded()
- }
- }
|