imageXChart2PNGimageXChart2PNG
Declarative Chart Engine
Home > Books > NetKernel API and Services Reference > Accessor Listing > Image Resource Model > imageXChart2PNG

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Syntax

URI
active:imageXChart2PNG

ArgumentRulesDescription
operandMandatory an XML chart document

Example Usage

DPML

<instr>
  <type>imageXChart2PNG</type>
  <operand>chart.xml</operand>
  <target>this:response</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:imageXChart2PNG");
req.addArgument("operand", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

The imageXChart2PNG accessor uses the jCharts engine to create PNG format charts from an XML chart document.

XML Chart

The org.ten60.util.xchart accessor requires an XML chart document.

<chart>
  <properties>
    <type>area</type>
    <title>NetKernel Work</title>
    <width>400</width>
    <height>250</height>
    <xAxisTitle>Time</xAxisTitle>
    <yAxisTitle>Cost Units</yAxisTitle>
    <xAxisLabels>
      <label>08:08:50</label>
      <label>08:08:55</label>
      <label>08:09:00</label> ...
    </xAxisLabels>
  </properties>
  <data>
    <dataset color="0000FF" name="Work">
      <point y="100" />
      <point y="120" />
      <point y="150" /> ...
    </dataset>
  </data>
</chart>

<properties> contains general properties of the chart.

  • <type> may be area, area-stacked, bar, bar-stacked, bar-clustered
  • <title> Displayed chart title
  • <width> PNG width
  • <height> PNG height
  • <yAxisTitle> y-axis title
  • <xAxisTitle> x-axis title
  • <xAxisLabels> Label for each x-axis item. There must be 1 label for each data point in a dataset
<data> contains one or more datasets - all datasets will be added to the chart
<dataset> a dataset color and name are specified as attributes
  • <point> a y-axis data value specified as attibute 'y'. There must be one point for each x-axis label.

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.