-
Notifications
You must be signed in to change notification settings - Fork 369
/
Copy pathLineChartActivity.java
137 lines (113 loc) · 5.28 KB
/
LineChartActivity.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.anychart.sample.charts;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import com.anychart.AnyChart;
import com.anychart.AnyChartView;
import com.anychart.chart.common.dataentry.DataEntry;
import com.anychart.chart.common.dataentry.ValueDataEntry;
import com.anychart.charts.Cartesian;
import com.anychart.core.cartesian.series.Line;
import com.anychart.data.Mapping;
import com.anychart.data.Set;
import com.anychart.enums.Anchor;
import com.anychart.enums.MarkerType;
import com.anychart.enums.TooltipPositionMode;
import com.anychart.graphics.vector.Stroke;
import com.anychart.sample.R;
import java.util.ArrayList;
import java.util.List;
public class LineChartActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_chart_common);
AnyChartView anyChartView = findViewById(R.id.any_chart_view);
anyChartView.setProgressBar(findViewById(R.id.progress_bar));
Cartesian cartesian = AnyChart.line();
cartesian.animation(true);
cartesian.padding(10d, 20d, 5d, 20d);
cartesian.crosshair().enabled(true);
cartesian.crosshair()
.yLabel(true)
// TODO ystroke
.yStroke((Stroke) null, null, null, (String) null, (String) null);
cartesian.tooltip().positionMode(TooltipPositionMode.POINT);
cartesian.title("Trend of Sales of the Most Popular Products of ACME Corp.");
cartesian.yAxis(0).title("Number of Bottles Sold (thousands)");
cartesian.xAxis(0).labels().padding(5d, 5d, 5d, 5d);
List<DataEntry> seriesData = new ArrayList<>();
seriesData.add(new CustomDataEntry("1986", 3.6, 2.3, 2.8));
seriesData.add(new CustomDataEntry("1987", 7.1, 4.0, 4.1));
seriesData.add(new CustomDataEntry("1988", 8.5, 6.2, 5.1));
seriesData.add(new CustomDataEntry("1989", 9.2, 11.8, 6.5));
seriesData.add(new CustomDataEntry("1990", 10.1, 13.0, 12.5));
seriesData.add(new CustomDataEntry("1991", 11.6, 13.9, 18.0));
seriesData.add(new CustomDataEntry("1992", 16.4, 18.0, 21.0));
seriesData.add(new CustomDataEntry("1993", 18.0, 23.3, 20.3));
seriesData.add(new CustomDataEntry("1994", 13.2, 24.7, 19.2));
seriesData.add(new CustomDataEntry("1995", 12.0, 18.0, 14.4));
seriesData.add(new CustomDataEntry("1996", 3.2, 15.1, 9.2));
seriesData.add(new CustomDataEntry("1997", 4.1, 11.3, 5.9));
seriesData.add(new CustomDataEntry("1998", 6.3, 14.2, 5.2));
seriesData.add(new CustomDataEntry("1999", 9.4, 13.7, 4.7));
seriesData.add(new CustomDataEntry("2000", 11.5, 9.9, 4.2));
seriesData.add(new CustomDataEntry("2001", 13.5, 12.1, 1.2));
seriesData.add(new CustomDataEntry("2002", 14.8, 13.5, 5.4));
seriesData.add(new CustomDataEntry("2003", 16.6, 15.1, 6.3));
seriesData.add(new CustomDataEntry("2004", 18.1, 17.9, 8.9));
seriesData.add(new CustomDataEntry("2005", 17.0, 18.9, 10.1));
seriesData.add(new CustomDataEntry("2006", 16.6, 20.3, 11.5));
seriesData.add(new CustomDataEntry("2007", 14.1, 20.7, 12.2));
seriesData.add(new CustomDataEntry("2008", 15.7, 21.6, 10));
seriesData.add(new CustomDataEntry("2009", 12.0, 22.5, 8.9));
Set set = Set.instantiate();
set.data(seriesData);
Mapping series1Mapping = set.mapAs("{ x: 'x', value: 'value' }");
Mapping series2Mapping = set.mapAs("{ x: 'x', value: 'value2' }");
Mapping series3Mapping = set.mapAs("{ x: 'x', value: 'value3' }");
Line series1 = cartesian.line(series1Mapping);
series1.name("Brandy");
series1.hovered().markers().enabled(true);
series1.hovered().markers()
.type(MarkerType.CIRCLE)
.size(4d);
series1.tooltip()
.position("right")
.anchor(Anchor.LEFT_CENTER)
.offsetX(5d)
.offsetY(5d);
Line series2 = cartesian.line(series2Mapping);
series2.name("Whiskey");
series2.hovered().markers().enabled(true);
series2.hovered().markers()
.type(MarkerType.CIRCLE)
.size(4d);
series2.tooltip()
.position("right")
.anchor(Anchor.LEFT_CENTER)
.offsetX(5d)
.offsetY(5d);
Line series3 = cartesian.line(series3Mapping);
series3.name("Tequila");
series3.hovered().markers().enabled(true);
series3.hovered().markers()
.type(MarkerType.CIRCLE)
.size(4d);
series3.tooltip()
.position("right")
.anchor(Anchor.LEFT_CENTER)
.offsetX(5d)
.offsetY(5d);
cartesian.legend().enabled(true);
cartesian.legend().fontSize(13d);
cartesian.legend().padding(0d, 0d, 10d, 0d);
anyChartView.setChart(cartesian);
}
private class CustomDataEntry extends ValueDataEntry {
CustomDataEntry(String x, Number value, Number value2, Number value3) {
super(x, value);
setValue("value2", value2);
setValue("value3", value3);
}
}
}