All docs
V19.2
24.1
The page you are viewing does not exist in version 24.1.
23.2
The page you are viewing does not exist in version 23.2.
23.1
The page you are viewing does not exist in version 23.1.
22.2
The page you are viewing does not exist in version 22.2.
22.1
The page you are viewing does not exist in version 22.1.
21.2
The page you are viewing does not exist in version 21.2.
21.1
The page you are viewing does not exist in version 21.1.
20.2
The page you are viewing does not exist in version 20.2.
20.1
The page you are viewing does not exist in version 20.1.
19.2
19.1
18.2
18.1
17.2
A newer version of this page is available. Switch to the current version.

jQuery PieChart - Point.Fields

Fields that provide information on the series point.

data

Contains the data object that the series point represents.

Type: any

fullState

Provides information about the state of the point object.

Type:

Number

Each point within a chart can be in several states. These states are represented by the numbers that are enumerated in the list below:

  • 0
    The point is not hovered and not selected (normal state);
  • 1
    The point is hovered;
  • 2
    The point is selected;
  • 3
    The point is hovered and selected.

You can also use the isHovered() and isSelected() point methods to check whether a point is hovered or selected.

To learn more about the handling of point hover and point selection, refer to the Point Hover and Point Selection topics.

originalArgument

Returns the point's argument value that was set in the data source.

Type:

String

|

Number

|

Date

originalValue

Returns the point's value that was set in the data source.

Type:

String

|

Number

|

Date

percent

Gets the percentage value of the specific point.

Type:

String

|

Number

|

Date

series

Returns the series object to which the point belongs.

Type:

Object

For information on members that a series object exposes, refer to the Series object description.

tag

Returns the tag of the point.

Type: any

When defining a data source, you can provide auxiliary information for each point by adding a tag field to the data source, and specifying the name of the field via the tagField option of the series.