Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.17 KB

chartaxes.md

File metadata and controls

45 lines (31 loc) · 1.17 KB

ChartAxes

Represents the chart axes.

Properties

None

Relationships

Relationship Type Description
categoryAxis ChartAxis Represents the category axis in a chart. Read-only.
seriesAxis ChartAxis Represents the series axis of a 3-dimensional chart. Read-only.
valueAxis ChartAxis Represents the value axis in an axis. Read-only.

Methods

Method Return Type Description
load(param: object) void Fills the proxy object created in JavaScript layer with property and object values specified in the parameter.

API Specification

load(param: object)

Fills the proxy object created in JavaScript layer with property and object values specified in the parameter.

Syntax

object.load(param);

Parameters

Parameter Type Description
param object Optional. Accepts parameter and relationship names as delimited string or an array. Or, provide loadOption object.

Returns

void

Examples

Back