Console Webservice API

LineChart extends Chart

Other API in Package

Console

Console System

Internal Console

List of Classes

ConsoleWebServiceController

AnalyticDataViewFilter

Archive

ArchiveManager

AreaChart

Attachment

AudioFile

BarChart

BillingEngine

BillingEvent

Browser

Buffer

BusinessUtil

CacheManager

Cell

CellFilter

Chart

ChartSharedSettings

ChartTool

Chunk

ConsoleManager

ConsolePacket

ConsoleWebServiceRequest

Cube

Data

DataList

DataListFilter

DataReader

DataRecord

DataSet

DataSetRecord

DataSetResult

DataView

DataViewBuilder

DataViewCriteria

DataViewFilter

DataViewList

DataViewRecord

DatasetFile

DateUtil

DisplaySettings

Document

DocumentFile

DownloadResponse

Email

EncryptionUtil

Enterprise

EnterpriseInfo

ExcelFile

File

FileBuffer

Formatter

Fragment

FtpRequest

GeoUtil

GroupConcat

ImageFile

Inspector

JSONBuffer

JSONParser

Job

JobManager

LineChart

LockManager

Logger

MailBox

MailBoxList

MailMessage

MailResponse

Message

MessageManager

Modules

Monitor

PWA

Packet

PacketDataList

PacketDataRecord

PagingInfo

Pal

PalActivationKeyInfo

PalInfo

Payload

PdfFile

PieChart

Profile

ProfileInfo

ProfilePacket

ProfilePalManager

ProfileTxManager

QRUtil

Render

Role

RuntimePal

SSOToken

SafeBox

ScatterPlotChart

ServiceRequest

ServiceResponse

ShellPal

ShellPalManager

SignSettings

SiteBuilder

Slice

SmartDoc

SmartDocManager

Socket

SocketResponse

StorageProvider

StorageProviderDataList

StoredObject

SystemDataView

SystemDataViewFilter

Tag

TagFilter

TagManager

TextEmail

TextMessage

TiffBuilder

TransactionPacket

Tunnel

TunnelResult

UnknownFile

VCardFile

Validator

ValidityCheck

WebServiceResponse

Wizard

XMLReader

ZoneAccess

Method Summary
String getName()

Returns the name of this chart.

String getType()

Returns the type of this chart.

  set3D(boolean enable)

Enables 3D look of pie chart if set to true

  setBackgroundColor(String color)

Sets background color for chart (e.q. 'blue' or '#FAE5B0')

  setDataList(DataList datalist, String categoryColumn, String valueColumn)

Sets input for the chart from datalist. Value column should contain numeric data.

  setDataList(DataList datalist, String seriesColumn, String categoryColumn, String valueColumn)

Sets input for the chart from datalist. Value column should contain numeric data.

  setDataListXY(DataList datalist, String seriesColumn, String xColumn, String yColumn)

Sets XY input for the chart from datalist (both numerical axes). xColumn and yColumn should contain numeric data. Note: 3D view not supported for XY based charts.

  setDataListXY(DataList datalist, String xColumn, String yColumn)

Sets XY input for the chart from datalist (both numerical axes). xColumn and yColumn should contain numeric data. Note: 3D view not supported for XY based charts.

  setDomainAxisColor(String color)

Sets domain axis color

  setDomainAxisLabel(String label)

Sets domain axis label

  setDomainAxisVisible(boolean visible)

Enables domain axis visibility

  setDrawShapes(boolean shapes)

Enables shapes to be rendered for value points for category based charts. Has no effect for 3D view and XY based charts

  setRangeAxisColor(String color)

Sets range axis color

  setRangeAxisLabel(String label)

Sets range axis label

  setRangeAxisVisible(boolean visible)

Enables domain axis visibility

  setShowLabels(boolean show)

Renders labels for item values if set to true

  setShowLegend(boolean show)

Displays legend for the chart if set to true

  setTitle(String title)

Sets title of this chart

  setVertical(boolean vertical)

Sets chart vertical orientation. True by default.

ImageFile toImage(String filename, int height, int width)

Renders the chart to an image. Filename should have an extension of png, jpg, or gif

String toString()

Returns a description of this object.

Method Detail


String getName()

Returns the name of this chart.

Returns:  String

Since: 09-08-2008

top

String getType()

Returns the type of this chart.

Returns:  String

Since: 09-08-2008

top

set3D(boolean enable)

Enables 3D look of pie chart if set to true

Parameters:

  • boolean   enable

Since: 11-11-2009

top

setBackgroundColor(String color)

Sets background color for chart (e.q. 'blue' or '#FAE5B0')

Parameters:

  • String   color

Since: 11-11-2009

top

setDataList(DataList datalist, String categoryColumn, String valueColumn)

Sets input for the chart from datalist. Value column should contain numeric data.

Parameters:

  • DataList   datalist
  • String   categoryColumn
  • String   valueColumn

Since: 11-13-2009

top

setDataList(DataList datalist, String seriesColumn, String categoryColumn, String valueColumn)

Sets input for the chart from datalist. Value column should contain numeric data.

Parameters:

  • DataList   datalist
  • String   seriesColumn
  • String   categoryColumn
  • String   valueColumn

Since: 11-13-2009

top

setDataListXY(DataList datalist, String seriesColumn, String xColumn, String yColumn)

Sets XY input for the chart from datalist (both numerical axes). xColumn and yColumn should contain numeric data. Note: 3D view not supported for XY based charts.

Parameters:

  • DataList   datalist
  • String   seriesColumn
  • String   xColumn
  • String   yColumn

Since: 11-13-2009

top

setDataListXY(DataList datalist, String xColumn, String yColumn)

Sets XY input for the chart from datalist (both numerical axes). xColumn and yColumn should contain numeric data. Note: 3D view not supported for XY based charts.

Parameters:

  • DataList   datalist
  • String   xColumn
  • String   yColumn

Since: 11-13-2009

top

setDomainAxisColor(String color)

Sets domain axis color

Parameters:

  • String   color

Since: 11-16-2009

top

setDomainAxisLabel(String label)

Sets domain axis label

Parameters:

  • String   label

Since: 11-13-2009

top

setDomainAxisVisible(boolean visible)

Enables domain axis visibility

Parameters:

  • boolean   visible

Since: 11-16-2009

top

setDrawShapes(boolean shapes)

Enables shapes to be rendered for value points for category based charts. Has no effect for 3D view and XY based charts

Parameters:

  • boolean   shapes

Since: 11-13-2009

top

setRangeAxisColor(String color)

Sets range axis color

Parameters:

  • String   color

Since: 11-16-2009

top

setRangeAxisLabel(String label)

Sets range axis label

Parameters:

  • String   label

Since: 11-13-2009

top

setRangeAxisVisible(boolean visible)

Enables domain axis visibility

Parameters:

  • boolean   visible

Since: 11-16-2009

top

setShowLabels(boolean show)

Renders labels for item values if set to true

Parameters:

  • boolean   show

Since: 11-16-2009

top

setShowLegend(boolean show)

Displays legend for the chart if set to true

Parameters:

  • boolean   show

Since: 11-11-2009

top

setTitle(String title)

Sets title of this chart

Parameters:

  • String   title

Since: 11-11-2009

top

setVertical(boolean vertical)

Sets chart vertical orientation. True by default.

Parameters:

  • boolean   vertical

Since: 11-13-2009

top

ImageFile toImage(String filename, int height, int width)

Renders the chart to an image. Filename should have an extension of png, jpg, or gif

Parameters:

  • String   filename Required parameter.
  • int   height Maximum allowed size of parameter: 2000
  • int   width Maximum allowed size of parameter: 2000

Returns:  ImageFile

Since: 03-01-2018

top

String toString()

Returns a description of this object.

Returns:  String

Since: 09-08-2008

top
Copyright © 2006 - 2024, ContractPal, Inc. All rights reserved. API Date: May 01, 2024 05:15 AM