Chart for Xamarin.iOS: OHLC Series
TKChart supports Ohlc stock series. This series operates with a special kind of data in the form of four parameters defining the stock market - open, high, low, and close. The high and low values show the price range (the highest and lowest prices) over one unit of time. The open and close values indicate the opening and closing price of the stock for the corresponding period. The width of the ohlc bar is determined by the period between 2 bars and the range of the axis. You should use the MinorTickIntervalUnit
property of TKChartDateTimeAxis
to change the period between 2 ohlc bars. Here is how to set up OHLC series:
Configure visual appearance of ohlc series
If you want to customize the appearance of ohlc series, you should implement the TKChartDelegate protocol as shown below::