Hello, Syncfusion Team.
I'm about to buy your Xamarin.Forms components, but first i have reach the same chart as the image that i will post or even better one.
I've already reached some of the things, but now i cannot find properties of the left ones.
I couldn't be able to upload my project for what I'm really sorry, so i will post you my code.
using Syncfusion.SfChart.XForms;
using System.Collections.ObjectModel;
using Xamarin.Forms;
namespace Simplesample
{
public class Sample : ContentPage
{
SfChart chart;
public Sample()
{
DateTimeAxis dateTimeAxis = new DateTimeAxis();
dateTimeAxis.LabelStyle.LabelFormat = "hh:mm";
chart = new SfChart();
CategoryAxis xAxis = new CategoryAxis();
chart.PrimaryAxis = xAxis;
chart.PrimaryAxis = dateTimeAxis;
NumericalAxis yAxis = new NumericalAxis();
chart.SecondaryAxis = yAxis;
chart.SecondaryAxis.OpposedPosition = true;
ObservableCollection<ChartDataPoint> data = new ObservableCollection<ChartDataPoint>()
{
new ChartDataPoint("2010", 873.8, 878.85, 855.5, 860.5),
new ChartDataPoint("2011", 861, 868.4, 835.2, 843.45),
new ChartDataPoint("2012", 846.15, 853, 838.5, 847.5),
new ChartDataPoint("2013", 846, 860.75, 841, 855),
new ChartDataPoint("2014", 841, 845, 827.85, 838.65),
new ChartDataPoint("2010", 873.8, 878.85, 855.5, 860.5),
new ChartDataPoint("2011", 861, 868.4, 835.2, 843.45),
new ChartDataPoint("2010", 873.8, 878.85, 855.5, 860.5),
new ChartDataPoint("2010", 873.8, 878.85, 855.5, 860.5),
new ChartDataPoint("2010", 873.8, 878.85, 855.5, 860.5),
new ChartDataPoint("2010", 873.8, 878.85, 855.5, 860.5),
new ChartDataPoint("2011", 861, 868.4, 835.2, 843.45),
new ChartDataPoint("2011", 861, 868.4, 835.2, 843.45),
new ChartDataPoint("2011", 861, 868.4, 835.2, 843.45),
new ChartDataPoint("2011", 861, 868.4, 835.2, 843.45),
};
CandleSeries candleSeries = new CandleSeries()
{
ItemsSource = data
};
candleSeries.EnableTooltip = true;
chart.Series.Add(candleSeries);
Content = chart;
}
}
}