package com.highcharts.DevGround.example;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import com.highsoft.highcharts.Common.HIChartsClasses.*;
import com.highsoft.highcharts.Common.HIColor;
import com.highsoft.highcharts.Core.HIChartView;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
HIChartView chartView = findViewById(R.id.hc);
chartView.theme = "brand-light";
HIOptions options = new HIOptions();
HIChart chart = new HIChart();
chart.setZoomType("xy");
options.setChart(chart);
HITitle title = new HITitle();
title.setText("Average Monthly Weather Data for Tokyo");
options.setTitle(title);
HISubtitle subtitle = new HISubtitle();
subtitle.setText("Source: WorldClimate.com");
options.setSubtitle(subtitle);
HIXAxis xaxis = new HIXAxis();
xaxis.setCategories(new ArrayList<>(Arrays.asList("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")));
xaxis.setCrosshair(new HICrosshair());
options.setXAxis(new ArrayList<>(Collections.singletonList(xaxis)));
HIYAxis yaxis1 = new HIYAxis();
yaxis1.setLabels(new HILabels());
yaxis1.getLabels().setFormat("{value}°C");
yaxis1.getLabels().setStyle(new HICSSObject());
yaxis1.getLabels().getStyle().setColor("#90ed7d");
yaxis1.setTitle(new HITitle());
yaxis1.getTitle().setText("Temperature");
yaxis1.getTitle().setStyle(new HICSSObject());
yaxis1.getTitle().getStyle().setColor("#90ed7d");
yaxis1.setOpposite(true);
HIYAxis yaxis2 = new HIYAxis();
yaxis2.setGridLineWidth(0);
yaxis2.setLabels(new HILabels());
yaxis2.getLabels().setFormat("{value} mm");
yaxis2.getLabels().setStyle(new HICSSObject());
yaxis2.getLabels().getStyle().setColor("#7cb5ec");
yaxis2.setTitle(new HITitle());
yaxis2.getTitle().setText("Rainfall");
yaxis2.getTitle().setStyle(new HICSSObject());
yaxis2.getTitle().getStyle().setColor("#7cb5ec");
HIYAxis yaxis3 = new HIYAxis();
yaxis3.setGridLineWidth(0);
yaxis3.setLabels(new HILabels());
yaxis3.getLabels().setFormat("{value} mb");
yaxis3.getLabels().setStyle(new HICSSObject());
yaxis3.getLabels().getStyle().setColor("#434348");
yaxis3.setTitle(new HITitle());
yaxis3.getTitle().setText("Sea-Level Pressure");
yaxis3.getTitle().setStyle(new HICSSObject());
yaxis3.getTitle().getStyle().setColor("#434348");
yaxis3.setOpposite(true);
options.setYAxis(new ArrayList<>(Arrays.asList(yaxis1, yaxis2, yaxis3)));
HITooltip tooltip = new HITooltip();
tooltip.setShared(true);
options.setTooltip(tooltip);
HILegend legend = new HILegend();
legend.setLayout("vertical");
legend.setAlign("left");
legend.setX(80);
legend.setVerticalAlign("top");
legend.setY(60);
legend.setFloating(true);
legend.setBackgroundColor(HIColor.initWithHexValue("FFFFFF"));
options.setLegend(legend);
HIColumn column = new HIColumn();
column.setName("Rainfall");
column.setYAxis(1);
Number[] columnData = new Number[] { 49.9, 71.5, 106.4, 129.2, 144, 176, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4 };
column.setData(new ArrayList<>(Arrays.asList(columnData)));
column.setTooltip(new HITooltip());
column.getTooltip().setValueSuffix(" mm");
HISpline spline1 = new HISpline();
spline1.setName("Sea-level Pressure");
spline1.setYAxis(2);
Number[] spline1Data = new Number[] { 1016, 1016, 1015.9, 1015.5, 1012.3, 1009.5, 1009.6, 1010.2, 1013.1, 1016.9, 1018.2, 1016.7 };
spline1.setData(new ArrayList<>(Arrays.asList(spline1Data)));
spline1.setMarker(new HIMarker());
spline1.getMarker().setEnabled(false);
spline1.setDashStyle("shortdot");
spline1.setTooltip(new HITooltip());
spline1.getTooltip().setValueSuffix(" mb");
HISpline spline2 = new HISpline();
spline2.setName("Temperature");
Number[] spline2Data = new Number[] { 7, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6 };
spline2.setData(new ArrayList<>(Arrays.asList(spline2Data)));
spline2.setTooltip(new HITooltip());
spline2.getTooltip().setValueSuffix("°C");
options.setSeries(new ArrayList<>(Arrays.asList(column, spline1, spline2)));
chartView.setOptions(options);
}
}