Android Chart - Examples
SciChart Android ships with ~90 Android Chart Examples which you can browse, play with, view the source-code and even export each SciChart Android Chart Example to a stand-alone Android Studio project. All of this is possible with the new and improved SciChart Android Examples Suite, which ships as part of our Android Charts SDK.
An introduction to the SciChart Android Chart Annotations API, which allows custom Android Views to be placed over the chart at specific X and Y data-values.
Annotation Types Include
– AxisMarkerAnnotation
– BoxAnnotation
– CustomAnnotation
– HorizontalLineAnnotation
– LineAnnotation
– LineArrowAnnotation
– TextAnnotation
– VerticalLineAnnotation
The full source code for the Android Chart Annotations example is included below (Scroll down!).
Did you know you can also view the source code from one of the following sources as well?
- Clone the SciChart.Android.Examples from Github.
- Or, view source and export each example to an Android Studio project from the Java version of the SciChart Android Examples app.
- Also the SciChart Android Trial contains the full source for the examples (link below).
Kotlin: AnnotationsAreEasyFragment.kt
View source code//******************************************************************************
// SCICHART® Copyright SciChart Ltd. 2011-2021. All rights reserved.
//
// Web: http://www.scichart.com
// Support: support@scichart.com
// Sales: sales@scichart.com
//
// LineChartFragment.kt is part of SCICHART®, High Performance Scientific Charts
// For full terms and conditions of the license, see http://www.scichart.com/scichart-eula/
//
// This source code is protected by international copyright law. Unauthorized
// reproduction, reverse-engineering, or distribution of all or any portion of
// this source code is strictly prohibited.
//
// This source code contains confidential and proprietary trade secrets of
// SciChart Ltd., and should at no time be copied, transferred, sold,
// distributed or made available without express written permission.
//******************************************************************************
package com.scichart.examples.fragments.examples2d.chartAnnotations.kt
import android.content.Context
import android.graphics.*
import android.view.Gravity
import android.view.View
import android.widget.ImageView
import com.scichart.charting.visuals.SciChartSurface
import com.scichart.charting.visuals.annotations.*
import com.scichart.data.model.DoubleRange
import com.scichart.drawing.common.FontStyle
import com.scichart.drawing.utility.ColorUtil
import com.scichart.examples.R
import com.scichart.examples.fragments.base.ExampleSingleChartBaseFragment
import com.scichart.examples.utils.scichartExtensions.*
class AnnotationsAreEasyFragment : ExampleSingleChartBaseFragment() {
override fun showDefaultModifiersInToolbar(): Boolean = false
override fun initExample(surface: SciChartSurface) {
surface.theme = R.style.SciChart_NavyBlue
surface.suspendUpdates {
xAxes { numericAxis {
visibleRange = DoubleRange(0.0, 10.0)
growBy = DoubleRange(0.1, 0.1)
textFormatting = "0.0#"
}}
yAxes { numericAxis {
visibleRange = DoubleRange(0.0, 10.0)
growBy = DoubleRange(0.1, 0.1)
textFormatting = "0.0#"
}}
annotations {
// Watermark
textAnnotation {
x1 = 0.5; y1 = 0.5
fontStyle = FontStyle(Typeface.DEFAULT_BOLD, 42f, 0x22FFFFFF, true)
coordinateMode = AnnotationCoordinateMode.Relative
horizontalAnchorPoint = HorizontalAnchorPoint.Center
verticalAnchorPoint = VerticalAnchorPoint.Center
text = "Create \n Watermarks"
textGravity = Gravity.CENTER
}
// Image annotation
imageAnnotation {
image = R.drawable.image_annotation_bird
setContentMode(ImageView.ScaleType.FIT_START)
annotationSurface = AnnotationSurfaceEnum.BelowChart
x1 = 0; y1 = 0; x2 = 7; y2 = 4
}
// Text annotations
textAnnotation {
x1 = 0.3; y1 = 9.7
fontStyle = FontStyle(24f, ColorUtil.White)
text = "Annotations are Easy!"
}
textAnnotation {
x1 = 1.0; y1 = 9.0
fontStyle = FontStyle(10f, ColorUtil.White)
text = "You can create text"
}
// Text with Anchor Points
textAnnotation {
x1 = 5.0; y1 = 8.0
horizontalAnchorPoint = HorizontalAnchorPoint.Center
verticalAnchorPoint = VerticalAnchorPoint.Bottom
text = "Anchor Center (X1, Y1)"
}
textAnnotation {
x1 = 5.0; y1 = 8.0
horizontalAnchorPoint = HorizontalAnchorPoint.Right
verticalAnchorPoint = VerticalAnchorPoint.Top
text = "Anchor Right"
}
textAnnotation {
x1 = 5.0; y1 = 8.0
horizontalAnchorPoint = HorizontalAnchorPoint.Left
verticalAnchorPoint = VerticalAnchorPoint.Top
text = "or Anchor Left"
}
// Line and LineArrow annotation
textAnnotation {
text = "Draw Lines with \nor without arrows"
x1 = 0.3; y1 = 6.1
fontStyle = FontStyle(12f, ColorUtil.White)
verticalAnchorPoint = VerticalAnchorPoint.Bottom
}
lineAnnotation {
x1 = 1.0; y1 = 4.0; x2 = 2.0; y2 = 6.0
stroke = SolidPenStyle(0xFF68bcae, 2f)
}
lineArrowAnnotation {
x1 = 1.2; y1 = 3.8; x2 = 2.5; y2 = 6.0
stroke = SolidPenStyle(0xFF68bcae, 2f)
headLength = 4f
headWidth = 8f
}
// Boxes
textAnnotation {
text = "Draw Boxes"
x1 = 3.5; y1 = 6.1
fontStyle = FontStyle(12f, ColorUtil.White)
verticalAnchorPoint = VerticalAnchorPoint.Bottom
}
boxAnnotation {
x1 = 3.5; y1 = 4.0; x2 = 5.0; y2 = 5.0
setBackgroundResource(R.drawable.example_box_annotation_background_1)
}
boxAnnotation {
x1 = 4.0; y1 = 4.5; x2 = 5.5; y2 = 5.5
setBackgroundResource(R.drawable.example_box_annotation_background_2)
}
boxAnnotation {
x1 = 4.5; y1 = 5.0; x2 = 6.0; y2 = 6.0
setBackgroundResource(R.drawable.example_box_annotation_background_3)
}
// Custom Shapes
textAnnotation {
text = "Or Custom Shapes"
x1 = 7.0; y1 = 6.1
fontStyle = FontStyle(12f, ColorUtil.White)
verticalAnchorPoint = VerticalAnchorPoint.Bottom
}
customAnnotation {
x1 = 8.0; y1 = 5.5
setContentId(R.layout.example_custom_annotation_view)
}
customAnnotation {
x1 = 8.0; y1 = 5.5
setContentView(CustomView2(context))
}
// Horizontal Lines
horizontalLineAnnotation {
x1 = 5.0; y1 = 3.2
horizontalGravity = Gravity.END
stroke = SolidPenStyle(0xFF47bde6, 2f)
annotationLabels {
annotationLabel {
labelPlacement = LabelPlacement.TopLeft
text = "Right Aligned, with text on left"
}
}
}
horizontalLineAnnotation {
x1 = 7.0; y1 = 2.8
stroke = SolidPenStyle(0xFF47bde6, 2f)
annotationLabels {
annotationLabel { labelPlacement = LabelPlacement.Axis }
}
}
// Vertical Lines
verticalLineAnnotation {
x1 = 9.0; y1 = 4.0
verticalGravity = Gravity.BOTTOM
stroke = SolidPenStyle(0xFFae418d, 2f)
annotationLabels {
annotationLabel { labelPlacement = LabelPlacement.Auto }
}
}
verticalLineAnnotation {
x1 = 9.5; y1 = 3.0
stroke = SolidPenStyle(0xFFae418d, 2f)
annotationLabels {
annotationLabel { labelPlacement = LabelPlacement.Auto }
annotationLabel {
labelPlacement = LabelPlacement.TopRight
text = "Bottom-aligned"
rotationAngle = 90f
}
}
}
}
chartModifiers { defaultModifiers() }
}
}
class CustomView2(context: Context?) : View(context) {
private val path = Path()
private val paintFill = Paint()
private val paintStroke = Paint()
override fun onDraw(canvas: Canvas) {
super.onDraw(canvas)
canvas.drawPath(path, paintFill)
canvas.drawPath(path, paintStroke)
}
init {
paintFill.style = Paint.Style.FILL
paintFill.color = FILL_COLOR
paintStroke.style = Paint.Style.STROKE
paintStroke.color = STROKE_COLOR
path.moveTo(0f, 15f)
path.lineTo(10f, 15f)
path.lineTo(10f, 0f)
path.lineTo(20f, 0f)
path.lineTo(20f, 15f)
path.lineTo(30f, 15f)
path.lineTo(15f, 30f)
path.lineTo(0f, 15f)
minimumHeight = 50
minimumWidth = 50
}
companion object {
private val FILL_COLOR = Color.parseColor("#57B22020")
private val STROKE_COLOR = Color.parseColor("#FF990000")
}
}
}Java: AnnotationsAreEasyFragment.java
View source code//******************************************************************************
// SCICHART® Copyright SciChart Ltd. 2011-2021. All rights reserved.
//
// Web: http://www.scichart.com
// Support: support@scichart.com
// Sales: sales@scichart.com
//
// AnnotationsAreEasyFragment.java is part of SCICHART®, High Performance Scientific Charts
// For full terms and conditions of the license, see http://www.scichart.com/scichart-eula/
//
// This source code is protected by international copyright law. Unauthorized
// reproduction, reverse-engineering, or distribution of all or any portion of
// this source code is strictly prohibited.
//
// This source code contains confidential and proprietary trade secrets of
// SciChart Ltd., and should at no time be copied, transferred, sold,
// distributed or made available without express written permission.
//******************************************************************************
package com.scichart.examples.fragments.examples2d.chartAnnotations;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.Typeface;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.View;
import android.widget.ImageView;
import androidx.annotation.NonNull;
import com.scichart.charting.visuals.SciChartSurface;
import com.scichart.charting.visuals.annotations.AnnotationCoordinateMode;
import com.scichart.charting.visuals.annotations.AnnotationSurfaceEnum;
import com.scichart.charting.visuals.annotations.ContentModeEnum;
import com.scichart.charting.visuals.annotations.HorizontalAnchorPoint;
import com.scichart.charting.visuals.annotations.LabelPlacement;
import com.scichart.charting.visuals.annotations.VerticalAnchorPoint;
import com.scichart.charting.visuals.axes.IAxis;
import com.scichart.core.framework.UpdateSuspender;
import com.scichart.drawing.utility.ColorUtil;
import com.scichart.examples.R;
import com.scichart.examples.fragments.base.ExampleSingleChartBaseFragment;
import java.util.Collections;
public class AnnotationsAreEasyFragment extends ExampleSingleChartBaseFragment {
@Override
public boolean showDefaultModifiersInToolbar() {
return false;
}
@Override
protected void initExample(@NonNull SciChartSurface surface) {
surface.setTheme(R.style.SciChart_NavyBlue);
UpdateSuspender.using(surface, () -> {
final IAxis xAxis = sciChartBuilder.newNumericAxis()
.withVisibleRange(0d, 10d)
.withGrowBy(0.1d, 0.1d)
.withTextFormatting("0.0#")
.build();
final IAxis yAxis = sciChartBuilder.newNumericAxis()
.withVisibleRange(0d, 10d)
.withGrowBy(0.1d, 0.1d)
.withTextFormatting("0.0#")
.build();
Collections.addAll(surface.getXAxes(), xAxis);
Collections.addAll(surface.getYAxes(), yAxis);
Collections.addAll(surface.getAnnotations(),
// Watermark
sciChartBuilder.newTextAnnotation()
.withX1(0.5)
.withY1(0.5)
.withFontStyle(Typeface.DEFAULT_BOLD, 42, 0x22FFFFFF)
.withCoordinateMode(AnnotationCoordinateMode.Relative)
.withHorizontalAnchorPoint(HorizontalAnchorPoint.Center)
.withVerticalAnchorPoint(VerticalAnchorPoint.Center)
.withText("Create \n Watermarks")
.withTextGravity(Gravity.CENTER)
.build(),
// Image annotation
sciChartBuilder.newImageAnnotation()
.withImage(R.drawable.image_annotation_bird)
.withContentMode(ImageView.ScaleType.FIT_START)
.withAnnotationSurface(AnnotationSurfaceEnum.BelowChart)
.withPosition(0d, 0d, 7d, 4d)
.build(),
// Text annotations
sciChartBuilder.newTextAnnotation()
.withX1(0.3)
.withY1(9.7)
.withFontStyle(24, ColorUtil.White)
.withText("Annotations are Easy!")
.build(),
sciChartBuilder.newTextAnnotation()
.withX1(1.0)
.withY1(9.0)
.withText("You can create text")
.withFontStyle(10, ColorUtil.White)
.build(),
// Text with Anchor Points
sciChartBuilder.newTextAnnotation()
.withX1(5d)
.withY1(8d)
.withHorizontalAnchorPoint(HorizontalAnchorPoint.Center)
.withVerticalAnchorPoint(VerticalAnchorPoint.Bottom)
.withText("Anchor Center (X1, Y1)")
.build(),
sciChartBuilder.newTextAnnotation()
.withX1(5d)
.withY1(8d)
.withHorizontalAnchorPoint(HorizontalAnchorPoint.Right)
.withVerticalAnchorPoint(VerticalAnchorPoint.Top)
.withText("Anchor Right")
.build(),
sciChartBuilder.newTextAnnotation()
.withX1(5d)
.withY1(8d)
.withHorizontalAnchorPoint(HorizontalAnchorPoint.Left)
.withVerticalAnchorPoint(VerticalAnchorPoint.Top)
.withText("or Anchor Left")
.build(),
// Line and LineArrow annotation
sciChartBuilder.newTextAnnotation()
.withText("Draw Lines with \nor without arrows")
.withX1(0.3).withY1(6.1)
.withFontStyle(12, ColorUtil.White)
.withVerticalAnchorPoint(VerticalAnchorPoint.Bottom)
.build(),
sciChartBuilder.newLineAnnotation()
.withPosition(1d, 4d, 2d, 6d)
.withStroke(2f, 0xFF68bcae)
.build(),
sciChartBuilder.newLineArrowAnnotation()
.withPosition(1.2d, 3.8d, 2.5d, 6d)
.withStroke(2f, 0xFF68bcae)
.withArrowHeadLength(4)
.withArrowHeadWidth(8)
.build(),
// Boxes
sciChartBuilder.newTextAnnotation()
.withText("Draw Boxes")
.withX1(3.5).withY1(6.1)
.withFontStyle(12, ColorUtil.White)
.withVerticalAnchorPoint(VerticalAnchorPoint.Bottom)
.build(),
sciChartBuilder.newBoxAnnotation()
.withPosition(3.5d, 4d, 5d, 5d)
.withBackgroundDrawableId(R.drawable.example_box_annotation_background_1)
.build(),
sciChartBuilder.newBoxAnnotation()
.withPosition(4d, 4.5d, 5.5d, 5.5d)
.withBackgroundDrawableId(R.drawable.example_box_annotation_background_2)
.build(),
sciChartBuilder.newBoxAnnotation()
.withPosition(4.5d, 5d, 6d, 6d)
.withBackgroundDrawableId(R.drawable.example_box_annotation_background_3)
.build(),
// Custom Shapes
sciChartBuilder.newTextAnnotation()
.withText("Or Custom Shapes")
.withX1(7).withY1(6.1)
.withFontStyle(12, ColorUtil.White)
.withVerticalAnchorPoint(VerticalAnchorPoint.Bottom)
.build(),
sciChartBuilder.newCustomAnnotation()
.withPosition(8d, 5.5d)
.withContent(R.layout.example_custom_annotation_view)
.build(),
sciChartBuilder.newCustomAnnotation()
.withPosition(7.5d, 5d)
.withContent(new CustomView2(getActivity()))
.build(),
// Horizontal Lines
sciChartBuilder.newHorizontalLineAnnotation()
.withPosition(5d, 3.2d)
.withHorizontalGravity(Gravity.RIGHT)
.withStroke(2, 0xFF47bde6)
.withAnnotationLabel(LabelPlacement.TopLeft, "Right Aligned, with text on left")
.build(),
sciChartBuilder.newHorizontalLineAnnotation()
.withPosition(7d, 2.8d)
.withStroke(2, 0xFF47bde6)
.withAnnotationLabel(LabelPlacement.Axis)
.build(),
// Vertical Lines
sciChartBuilder.newVerticalLineAnnotation()
.withPosition(9d, 4d)
.withVerticalGravity(Gravity.BOTTOM)
.withStroke(2, 0xFFae418d)
.withAnnotationLabel()
.build(),
sciChartBuilder.newVerticalLineAnnotation()
.withPosition(9.5d, 3d)
.withStroke(2, 0xFFae418d)
.withAnnotationLabel()
.withAnnotationLabel(LabelPlacement.TopRight, "Bottom-aligned", 90)
.build());
surface.getChartModifiers().add(sciChartBuilder.newModifierGroupWithDefaultModifiers().build());
});
}
public static class CustomView1 extends View {
private final int FILL_COLOR = Color.parseColor("#5768bcae");
private final int STROKE_COLOR = Color.parseColor("#FF68bcae");
private final Path path = new Path();
private final Paint paintFill = new Paint();
private final Paint paintStroke = new Paint();
public CustomView1(Context context) {
super(context);
init();
}
public CustomView1(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
private void init() {
paintFill.setStyle(Paint.Style.FILL);
paintFill.setColor(FILL_COLOR);
paintStroke.setStyle(Paint.Style.STROKE);
paintStroke.setColor(STROKE_COLOR);
path.moveTo(0, 15);
path.lineTo(15, 0);
path.lineTo(30, 15);
path.lineTo(20, 15);
path.lineTo(20, 30);
path.lineTo(10, 30);
path.lineTo(10, 15);
path.lineTo(0, 15);
setMinimumHeight(50);
setMinimumWidth(50);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawPath(path, paintFill);
canvas.drawPath(path, paintStroke);
}
}
public static class CustomView2 extends View {
private final int FILL_COLOR = Color.parseColor("#57ae418d");
private final int STROKE_COLOR = Color.parseColor("#FFae418d");
private final Path path = new Path();
private final Paint paintFill = new Paint();
private final Paint paintStroke = new Paint();
public CustomView2(Context context) {
super(context);
paintFill.setStyle(Paint.Style.FILL);
paintFill.setColor(FILL_COLOR);
paintStroke.setStyle(Paint.Style.STROKE);
paintStroke.setColor(STROKE_COLOR);
path.moveTo(0, 15);
path.lineTo(10, 15);
path.lineTo(10, 0);
path.lineTo(20, 0);
path.lineTo(20, 15);
path.lineTo(30, 15);
path.lineTo(15, 30);
path.lineTo(0, 15);
setMinimumHeight(50);
setMinimumWidth(50);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawPath(path, paintFill);
canvas.drawPath(path, paintStroke);
}
}
}
Back to Android Chart Examples


