| |
| package com.xxmassdeveloper.mpchartexample; |
| |
| import android.graphics.Color; |
| import android.os.Bundle; |
| import android.util.Log; |
| import android.view.Menu; |
| import android.view.MenuItem; |
| import android.view.WindowManager; |
| import android.widget.SeekBar; |
| import android.widget.SeekBar.OnSeekBarChangeListener; |
| import android.widget.TextView; |
| |
| import com.github.mikephil.charting.charts.BarChart; |
| import com.github.mikephil.charting.components.AxisBase; |
| import com.github.mikephil.charting.components.Legend; |
| import com.github.mikephil.charting.components.Legend.LegendPosition; |
| import com.github.mikephil.charting.components.XAxis; |
| import com.github.mikephil.charting.components.YAxis; |
| import com.github.mikephil.charting.data.BarData; |
| import com.github.mikephil.charting.data.BarDataSet; |
| import com.github.mikephil.charting.data.BarEntry; |
| import com.github.mikephil.charting.data.Entry; |
| import com.github.mikephil.charting.formatter.AxisValueFormatter; |
| import com.github.mikephil.charting.formatter.LargeValueFormatter; |
| import com.github.mikephil.charting.highlight.Highlight; |
| import com.github.mikephil.charting.interfaces.datasets.IBarDataSet; |
| import com.github.mikephil.charting.listener.OnChartValueSelectedListener; |
| import com.xxmassdeveloper.mpchartexample.custom.MyMarkerView; |
| import com.xxmassdeveloper.mpchartexample.notimportant.DemoBase; |
| |
| import java.util.ArrayList; |
| |
| public class BarChartActivityMultiDataset extends DemoBase implements OnSeekBarChangeListener, |
| OnChartValueSelectedListener { |
| |
| private BarChart mChart; |
| private SeekBar mSeekBarX, mSeekBarY; |
| private TextView tvX, tvY; |
| |
| @Override |
| protected void onCreate(Bundle savedInstanceState) { |
| super.onCreate(savedInstanceState); |
| getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, |
| WindowManager.LayoutParams.FLAG_FULLSCREEN); |
| setContentView(R.layout.activity_barchart); |
| |
| tvX = (TextView) findViewById(R.id.tvXMax); |
| tvY = (TextView) findViewById(R.id.tvYMax); |
| |
| mSeekBarX = (SeekBar) findViewById(R.id.seekBar1); |
| mSeekBarX.setOnSeekBarChangeListener(this); |
| |
| mSeekBarY = (SeekBar) findViewById(R.id.seekBar2); |
| mSeekBarY.setOnSeekBarChangeListener(this); |
| |
| mChart = (BarChart) findViewById(R.id.chart1); |
| mChart.setOnChartValueSelectedListener(this); |
| mChart.setDescription(""); |
| |
| // mChart.setDrawBorders(true); |
| |
| // scaling can now only be done on x- and y-axis separately |
| mChart.setPinchZoom(false); |
| |
| mChart.setDrawBarShadow(false); |
| |
| mChart.setDrawGridBackground(false); |
| |
| // create a custom MarkerView (extend MarkerView) and specify the layout |
| // to use for it |
| MyMarkerView mv = new MyMarkerView(this, R.layout.custom_marker_view); |
| |
| // set the marker to the chart |
| mChart.setMarkerView(mv); |
| |
| mSeekBarX.setProgress(10); |
| mSeekBarY.setProgress(100); |
| |
| Legend l = mChart.getLegend(); |
| l.setPosition(LegendPosition.RIGHT_OF_CHART_INSIDE); |
| l.setTypeface(mTfLight); |
| l.setYOffset(0f); |
| l.setYEntrySpace(0f); |
| l.setTextSize(8f); |
| |
| XAxis xl = mChart.getXAxis(); |
| xl.setTypeface(mTfLight); |
| xl.setGranularity(1f); |
| xl.setCenterAxisLabels(true); |
| xl.setValueFormatter(new AxisValueFormatter() { |
| @Override |
| public String getFormattedValue(float value, AxisBase axis) { |
| return String.valueOf((int) value); |
| } |
| |
| @Override |
| public int getDecimalDigits() { |
| return 0; |
| } |
| }); |
| |
| YAxis leftAxis = mChart.getAxisLeft(); |
| leftAxis.setTypeface(mTfLight); |
| leftAxis.setValueFormatter(new LargeValueFormatter()); |
| leftAxis.setDrawGridLines(false); |
| leftAxis.setSpaceTop(30f); |
| leftAxis.setAxisMinValue(0f); // this replaces setStartAtZero(true) |
| |
| mChart.getAxisRight().setEnabled(false); |
| } |
| |
| @Override |
| public boolean onCreateOptionsMenu(Menu menu) { |
| getMenuInflater().inflate(R.menu.bar, menu); |
| return true; |
| } |
| |
| @Override |
| public boolean onOptionsItemSelected(MenuItem item) { |
| |
| switch (item.getItemId()) { |
| case R.id.actionToggleValues: { |
| for (IBarDataSet set : mChart.getData().getDataSets()) |
| set.setDrawValues(!set.isDrawValuesEnabled()); |
| |
| mChart.invalidate(); |
| break; |
| } |
| case R.id.actionTogglePinch: { |
| if (mChart.isPinchZoomEnabled()) |
| mChart.setPinchZoom(false); |
| else |
| mChart.setPinchZoom(true); |
| |
| mChart.invalidate(); |
| break; |
| } |
| case R.id.actionToggleAutoScaleMinMax: { |
| mChart.setAutoScaleMinMaxEnabled(!mChart.isAutoScaleMinMaxEnabled()); |
| mChart.notifyDataSetChanged(); |
| break; |
| } |
| case R.id.actionToggleBarBorders: { |
| for (IBarDataSet set : mChart.getData().getDataSets()) |
| ((BarDataSet)set).setBarBorderWidth(set.getBarBorderWidth() == 1.f ? 0.f : 1.f); |
| |
| mChart.invalidate(); |
| break; |
| } |
| case R.id.actionToggleHighlight: { |
| if(mChart.getData() != null) { |
| mChart.getData().setHighlightEnabled(!mChart.getData().isHighlightEnabled()); |
| mChart.invalidate(); |
| } |
| break; |
| } |
| case R.id.actionSave: { |
| // mChart.saveToGallery("title"+System.currentTimeMillis()); |
| mChart.saveToPath("title" + System.currentTimeMillis(), ""); |
| break; |
| } |
| case R.id.animateX: { |
| mChart.animateX(3000); |
| break; |
| } |
| case R.id.animateY: { |
| mChart.animateY(3000); |
| break; |
| } |
| case R.id.animateXY: { |
| |
| mChart.animateXY(3000, 3000); |
| break; |
| } |
| } |
| return true; |
| } |
| |
| @Override |
| public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { |
| |
| float groupSpace = 0.04f; |
| float barSpace = 0.02f; // x3 dataset |
| float barWidth = 0.3f; // x3 dataset |
| // (0.3 + 0.02) * 3 + 0.04 = 1.00 -> interval per "group" |
| |
| int startYear = 1980; |
| int endYear = startYear + mSeekBarX.getProgress(); |
| |
| tvX.setText(startYear + "\n-" + endYear); |
| tvY.setText("" + (mSeekBarY.getProgress())); |
| |
| ArrayList<BarEntry> yVals1 = new ArrayList<BarEntry>(); |
| ArrayList<BarEntry> yVals2 = new ArrayList<BarEntry>(); |
| ArrayList<BarEntry> yVals3 = new ArrayList<BarEntry>(); |
| |
| float mult = mSeekBarY.getProgress() * 1000f; |
| |
| for (int i = startYear; i < endYear; i++) { |
| float val = (float) (Math.random() * mult) + 3; |
| yVals1.add(new BarEntry(i, val)); |
| } |
| |
| for (int i = startYear; i < endYear; i++) { |
| float val = (float) (Math.random() * mult) + 3; |
| yVals2.add(new BarEntry(i, val)); |
| } |
| |
| for (int i = startYear; i < endYear; i++) { |
| float val = (float) (Math.random() * mult) + 3; |
| yVals3.add(new BarEntry(i, val)); |
| } |
| |
| BarDataSet set1, set2, set3; |
| |
| if (mChart.getData() != null && |
| mChart.getData().getDataSetCount() > 0) { |
| set1 = (BarDataSet)mChart.getData().getDataSetByIndex(0); |
| set2 = (BarDataSet)mChart.getData().getDataSetByIndex(1); |
| set3 = (BarDataSet)mChart.getData().getDataSetByIndex(2); |
| set1.setValues(yVals1); |
| set2.setValues(yVals2); |
| set3.setValues(yVals3); |
| mChart.getData().notifyDataChanged(); |
| mChart.notifyDataSetChanged(); |
| } else { |
| // create 3 datasets with different types |
| set1 = new BarDataSet(yVals1, "Company A"); |
| // set1.setColors(ColorTemplate.createColors(getApplicationContext(), |
| // ColorTemplate.FRESH_COLORS)); |
| set1.setColor(Color.rgb(104, 241, 175)); |
| set2 = new BarDataSet(yVals2, "Company B"); |
| set2.setColor(Color.rgb(164, 228, 251)); |
| set3 = new BarDataSet(yVals3, "Company C"); |
| set3.setColor(Color.rgb(242, 247, 158)); |
| |
| ArrayList<IBarDataSet> dataSets = new ArrayList<IBarDataSet>(); |
| dataSets.add(set1); |
| dataSets.add(set2); |
| dataSets.add(set3); |
| |
| BarData data = new BarData(dataSets); |
| data.setValueFormatter(new LargeValueFormatter()); |
| |
| // add space between the dataset groups in percent of bar-width |
| data.setValueTypeface(mTfLight); |
| |
| mChart.setData(data); |
| } |
| |
| mChart.getBarData().setBarWidth(barWidth); |
| mChart.getXAxis().setAxisMinValue(startYear); |
| mChart.getXAxis().setAxisMaxValue(mChart.getBarData().getGroupWidth(groupSpace, barSpace) * mSeekBarX.getProgress() + startYear); |
| mChart.groupBars(startYear, groupSpace, barSpace); |
| mChart.invalidate(); |
| } |
| |
| @Override |
| public void onStartTrackingTouch(SeekBar seekBar) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| @Override |
| public void onStopTrackingTouch(SeekBar seekBar) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| @Override |
| public void onValueSelected(Entry e, Highlight h) { |
| Log.i("Activity", "Selected: " + e.toString() + ", dataSet: " + h.getDataSetIndex()); |
| } |
| |
| @Override |
| public void onNothingSelected() { |
| Log.i("Activity", "Nothing selected."); |
| } |
| } |