mirror of
https://github.com/morgan9e/macos-stats
synced 2026-04-14 00:04:15 +09:00
33 lines
707 B
Swift
33 lines
707 B
Swift
//
|
|
// CandleChartData.swift
|
|
// Charts
|
|
//
|
|
// Created by Daniel Cohen Gindi on 26/2/15.
|
|
//
|
|
// Copyright 2015 Daniel Cohen Gindi & Philipp Jahoda
|
|
// A port of MPAndroidChart for iOS
|
|
// Licensed under Apache License 2.0
|
|
//
|
|
// https://github.com/danielgindi/ios-charts
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public class CandleChartData: BarLineScatterCandleBubbleChartData
|
|
{
|
|
public override init()
|
|
{
|
|
super.init()
|
|
}
|
|
|
|
public override init(xVals: [String?]?, dataSets: [ChartDataSet]?)
|
|
{
|
|
super.init(xVals: xVals, dataSets: dataSets)
|
|
}
|
|
|
|
public override init(xVals: [NSObject]?, dataSets: [ChartDataSet]?)
|
|
{
|
|
super.init(xVals: xVals, dataSets: dataSets)
|
|
}
|
|
}
|