IndexedAreaValue

Represents an IndexedAreaValue.

public class IndexedAreaValue : AreaValue
Public Class IndexedAreaValue
    Inherits AreaValue

Inheritance: ObjectAreaValueIndexedAreaValue

Licensing Info

This class is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Examples

The following example creates a indexed area value series chart and adds values to it.
Imports System
Imports ceTe.DynamicPDF
Imports ceTe.DynamicPDF.PageElements
Imports ceTe.DynamicPDF.PageElements.Charting
Imports ceTe.DynamicPDF.PageElements.Charting.Series
Imports ceTe.DynamicPDF.PageElements.Charting.Values
Imports ceTe.DynamicPDF.PageElements.Charting.Axes
    
Module MyModule
    
    Sub Main()
    
        ' Create a PDF Document
        Dim MyDocument As Document = New Document()
    
        ' Create a Page and add it to the document
        Dim MyPage As Page = New Page()
        MyDocument.Pages.Add(MyPage)
    
        ' Create a chart
        Dim MyChart As Chart = New Chart(0, 0, 400, 230)
    
        ' Get the default plot area from the chart
        Dim MyPlotArea As PlotArea = MyChart.PrimaryPlotArea
    
        ' Create header titles and add it to the chart
        Dim MyTitle1 As Title = New Title("Website Visitors")
        Dim MyTitle2 As Title = New Title("Year - 2007")
        MyChart.HeaderTitles.Add(MyTitle1)
        MyChart.HeaderTitles.Add(MyTitle2)
    
        ' Create a indexed xAxis
        Dim xAxis As IndexedXAxis = New IndexedXAxis()
    
        ' Create a numeric yAxis
        Dim yAxis As NumericYAxis = New NumericYAxis()
    
        ' Create a indexed area series and add values to it
        Dim MyAreaSeries1 As IndexedAreaSeries = New IndexedAreaSeries("Website A", xAxis, yAxis)
        MyAreaSeries1.Values.Add(New IndexedAreaValue(5, 0))
        MyAreaSeries1.Values.Add(New IndexedAreaValue(7, 1))
        MyAreaSeries1.Values.Add(New IndexedAreaValue(9, 2))
        MyAreaSeries1.Values.Add(New IndexedAreaValue(6, 3))
        Dim MyAreaSeries2 As IndexedAreaSeries = New IndexedAreaSeries("Website B", xAxis, yAxis)
        MyAreaSeries2.Values.Add(New IndexedAreaValue(4, 0))
        MyAreaSeries2.Values.Add(New IndexedAreaValue(2, 1))
        MyAreaSeries2.Values.Add(New IndexedAreaValue(5, 2))
        MyAreaSeries2.Values.Add(New IndexedAreaValue(8, 3))
        Dim MyAreaSeries3 As IndexedAreaSeries = New IndexedAreaSeries("Website C", xAxis, yAxis)
        MyAreaSeries3.Values.Add(New IndexedAreaValue(2, 0))
        MyAreaSeries3.Values.Add(New IndexedAreaValue(4, 1))
        MyAreaSeries3.Values.Add(New IndexedAreaValue(6, 2))
        MyAreaSeries3.Values.Add(New IndexedAreaValue(9, 3))
    
        ' Add indexed area series to the plot area
        MyPlotArea.Series.Add(MyAreaSeries1)
        MyPlotArea.Series.Add(MyAreaSeries2)
        MyPlotArea.Series.Add(MyAreaSeries3)
    
        ' Create a  title and add it to the YAxis
        Dim MyTitle3 As Title = New Title("Visitors (in millions)")
        yAxis.Titles.Add(MyTitle3)
    
        ' Add Indexed x AxisLabels to the XAxis
        MyAreaSeries1.XAxis.Labels.Add(New IndexedXAxisLabel("Q1", 0))
        MyAreaSeries1.XAxis.Labels.Add(New IndexedXAxisLabel("Q2", 1))
        MyAreaSeries1.XAxis.Labels.Add(New IndexedXAxisLabel("Q3", 2))
        MyAreaSeries1.XAxis.Labels.Add(New IndexedXAxisLabel("Q4", 3))
    
        ' Add the chart to the page  
        MyPage.Elements.Add(MyChart)
    
        ' Save the PDF
        MyDocument.Draw("C:\MyDocument.pdf")
    
    End Sub
End Module
using System;
using ceTe.DynamicPDF;
using ceTe.DynamicPDF.PageElements;
using ceTe.DynamicPDF.PageElements.Charting;
using ceTe.DynamicPDF.PageElements.Charting.Series;
using ceTe.DynamicPDF.PageElements.Charting.Axes;
using ceTe.DynamicPDF.PageElements.Charting.Values;

public class Example
{
    public static void CreatePDF(string outputPath)
    {
        // Create a PDF Document
        Document document = new Document();

        // Create a Page and add it to the document
        Page page = new Page();
        document.Pages.Add(page);

        // Create a chart
        Chart chart = new Chart(0, 0, 400, 230);

        // Get the default plot area from the chart
        PlotArea plotArea = chart.PrimaryPlotArea;

        // Create header titles and add it to the chart
        Title title1 = new Title("Website Visitors");
        Title title2 = new Title("Year - 2007");
        chart.HeaderTitles.Add(title1);
        chart.HeaderTitles.Add(title2);

        // Create a indexed xAxis
        IndexedXAxis xAxis = new IndexedXAxis();

        // Create a numeric yAxis
        NumericYAxis yAxis = new NumericYAxis();

        // Create a indexed area series and add values to it
        IndexedAreaSeries areaSeries1 = new IndexedAreaSeries("Website A", xAxis, yAxis);
        areaSeries1.Values.Add(new IndexedAreaValue(5, 0));
        areaSeries1.Values.Add(new IndexedAreaValue(7, 1));
        areaSeries1.Values.Add(new IndexedAreaValue(9, 2));
        areaSeries1.Values.Add(new IndexedAreaValue(6, 3));
        IndexedAreaSeries areaSeries2 = new IndexedAreaSeries("Website B", xAxis, yAxis);
        areaSeries2.Values.Add(new IndexedAreaValue(4, 0));
        areaSeries2.Values.Add(new IndexedAreaValue(2, 1));
        areaSeries2.Values.Add(new IndexedAreaValue(5, 2));
        areaSeries2.Values.Add(new IndexedAreaValue(8, 3));
        IndexedAreaSeries areaSeries3 = new IndexedAreaSeries("Website C", xAxis, yAxis);
        areaSeries3.Values.Add(new IndexedAreaValue(2, 0));
        areaSeries3.Values.Add(new IndexedAreaValue(4, 1));
        areaSeries3.Values.Add(new IndexedAreaValue(6, 2));
        areaSeries3.Values.Add(new IndexedAreaValue(9, 3));

        // Add indexed area series to the plot area
        plotArea.Series.Add(areaSeries1);
        plotArea.Series.Add(areaSeries2);
        plotArea.Series.Add(areaSeries3);

        // Create a  title and add it to the YAxis
        Title lTitle = new Title("Visitors (in millions)");
        yAxis.Titles.Add(lTitle);

        // Add indexed x AxisLabels to the XAxis
        areaSeries1.XAxis.Labels.Add(new IndexedXAxisLabel("Q1", 0));
        areaSeries1.XAxis.Labels.Add(new IndexedXAxisLabel("Q2", 1));
        areaSeries1.XAxis.Labels.Add(new IndexedXAxisLabel("Q3", 2));
        areaSeries1.XAxis.Labels.Add(new IndexedXAxisLabel("Q4", 3));

        // Add the chart to the page  
        page.Elements.Add(chart);

        // Save the PDF
        document.Draw(outputPath);
    }
}

Constructors

IndexedAreaValue(Single, Int32)Initializes a new instance of the IndexedAreaValue object.

Properties

DataLabelGets or sets the ValuePositionDataLabel of the area value.
(Inherited from AreaValue)
PositionGets the position of IndexedAreaValue.
ValueGets the value of the area value.
(Inherited from AreaValue)

Methods

Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicPDF.PageElements.Charting.Values

In this topic