Back to project page Android-Charts.
The source code is released under:
Apache License??Version 2.0, January 2004??http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and condi...
If you think the Android project Android-Charts listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * MASlipCandleStickChart.java/*w w w . j a va 2 s . c om*/ * Android-Charts * * Created by limc on 2014. * * Copyright 2011 limc.cn All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package cn.limc.androidcharts.view; import java.util.List; import cn.limc.androidcharts.entity.DateValueEntity; import cn.limc.androidcharts.entity.LineEntity; import android.content.Context; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.PointF; import android.util.AttributeSet; /** * <p> * en * </p> * <p> * jp * </p> * <p> * cn * </p> * * @author limc * @version v1.0 2014/01/21 12:03:25 * */ public class MASlipCandleStickChart extends SlipCandleStickChart { /** * <p> * data to draw lines * </p> * <p> * ???????????? * </p> * <p> * ???????????? * </p> */ private List<LineEntity<DateValueEntity>> linesData; /** * <p> * Constructor of MASlipCandleStickChart * </p> * <p> * MASlipCandleStickChart???????? * </p> * <p> * MASlipCandleStickChart??????????? * </p> * * @param context * @param attrs * @param defStyle */ public MASlipCandleStickChart(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); // TODO Auto-generated constructor stub } /** * <p> * Constructor of MASlipCandleStickChart * </p> * <p> * MASlipCandleStickChart???????? * </p> * <p> * MASlipCandleStickChart??????????? * </p> * * @param context * @param attrs */ public MASlipCandleStickChart(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub } /** * <p> * Constructor of MASlipCandleStickChart * </p> * <p> * MASlipCandleStickChart???????? * </p> * <p> * MASlipCandleStickChart??????????? * </p> * * @param context */ public MASlipCandleStickChart(Context context) { super(context); // TODO Auto-generated constructor stub } @Override protected void calcDataValueRange() { super.calcDataValueRange(); double maxValue = this.maxValue; double minValue = this.minValue; // ???????MA? for (int i = 0; i < this.linesData.size(); i++) { LineEntity<DateValueEntity> line = this.linesData.get(i); if (line != null && line.getLineData().size() > 0) { // ??????????????? for (int j = displayFrom; j < displayFrom + displayNumber; j++) { DateValueEntity lineData = line.getLineData().get(j); if (lineData.getValue() < minValue) { minValue = lineData.getValue(); } if (lineData.getValue() > maxValue) { maxValue = lineData.getValue(); } } } } this.maxValue = maxValue; this.minValue = minValue; } /* * (non-Javadoc) * * <p>Called when is going to draw this chart<p> <p>???????????????????????<p> * <p>???????<p> * * @param canvas * * @see android.view.View#onDraw(android.graphics.Canvas) */ @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); // draw lines if (null != this.linesData) { if (0 != this.linesData.size()) { drawLines(canvas); } } } /** * <p> * draw lines * </p> * <p> * ???????? * </p> * <p> * ?????? * </p> * * @param canvas */ protected void drawLines(Canvas canvas) { if (null == stickData) { return; } if (stickData.size() <= 0) { return; } // distance between two points float lineLength = dataQuadrant.getQuadrantPaddingWidth() / displayNumber - stickSpacing; // start points X float startX; // draw MA lines for (int i = 0; i < linesData.size(); i++) { LineEntity<DateValueEntity> line = (LineEntity<DateValueEntity>) linesData .get(i); if (line == null) { continue; } if (line.isDisplay() == false) { continue; } List<DateValueEntity> lineData = line.getLineData(); if (lineData == null) { continue; } Paint mPaint = new Paint(); mPaint.setColor(line.getLineColor()); mPaint.setAntiAlias(true); // set start points X startX = dataQuadrant.getQuadrantPaddingStartX() + lineLength / 2; // start point PointF ptFirst = null; for (int j = super.getDisplayFrom(); j < super.getDisplayFrom() + super.getDisplayNumber(); j++) { float value = lineData.get(j).getValue(); // calculate Y float valueY = (float) ((1f - (value - minValue) / (maxValue - minValue)) * dataQuadrant.getQuadrantPaddingHeight()) + dataQuadrant.getQuadrantPaddingStartY(); // if is not last point connect to previous point if (j > super.getDisplayFrom()) { canvas.drawLine(ptFirst.x, ptFirst.y, startX, valueY, mPaint); } // reset ptFirst = new PointF(startX, valueY); startX = startX + stickSpacing + lineLength; } } } /** * @return the linesData */ public List<LineEntity<DateValueEntity>> getLinesData() { return linesData; } /** * @param linesData * the linesData to set */ public void setLinesData(List<LineEntity<DateValueEntity>> linesData) { this.linesData = linesData; } }