Search results

AccumulationChartComponent

Represents Vuejs AccumulationChart Component

<ejs-accumulationchart></ejs-accumulationchart>

Properties

accumulationDataLabelModule

AccumulationDataLabel

accumulationDataLabelModule is used to manipulate and add dataLabel in accumulation chart.

accumulationHighlightModule

AccumulationHighlight

accumulationHighlightModule is used to manipulate and add highlight to the accumulation chart.

accumulationLegendModule

AccumulationLegend

accumulationLegendModule is used to manipulate and add legend in accumulation chart.

accumulationSelectionModule

AccumulationSelection

accumulationSelectionModule is used to manipulate and add selection in accumulation chart.

accumulationTooltipModule

AccumulationTooltip

accumulationTooltipModule is used to manipulate and add tooltip in accumulation chart.

allowExport

boolean

To enable export feature in blazor chart.

Defaults to false

annotationModule

AccumulationAnnotation

annotationModule is used to manipulate and add annotation in chart.

annotations

AccumulationAnnotationSettingsModel[]

The configuration for annotation in chart.

background

string

The background color of the chart, which accepts value in hex, rgba as a valid CSS color string.

Defaults to null

backgroundImage

string

The background image of the chart that accepts value in string as url link or location of an image.

Defaults to null

border

BorderModel

Options for customizing the color and width of the chart border.

center

PieCenterModel

Center of pie

centerLabel

CenterLabelModel

Options for customizing the center label of accumulation chart.

dataSource

Object | DataManager

Specifies the dataSource for the AccumulationChart. It can be an array of JSON objects or an instance of DataManager.

<div id='Pie'></div>
let dataManager: DataManager = new DataManager({
        url: 'http://mvc.syncfusion.com/Services/Northwnd.svc/Tasks/'
});
let query: Query = new Query().take(50).where('Estimate', 'greaterThan', 0, false);
let pie: AccumulationChart = new AccumulationChart({
...
    dataSource: dataManager,
    series: [{
       xName: 'Id',
       yName: 'Estimate',
       query: query
   }],
...
});
pie.appendTo('#Pie');

Defaults to

enableAnimation

boolean

If set true, enables the animation for both chart and accumulation.

Defaults to true

enableBorderOnMouseMove

boolean

If set true, enables the border in pie and accumulation chart while mouse moving.

Defaults to true

enableExport

boolean

To enable export feature in chart.

Defaults to true

enablePersistence

boolean

Enable or disable persisting component’s state between page reloads.

Defaults to false

enableRtl

boolean

Enable or disable rendering component in right to left direction.

Defaults to false

enableSmartLabels

boolean

If set true, labels for the point will be placed smartly without overlapping.

Defaults to true

exportModule

Export

Export Module is used to export Accumulation chart.

height

string

The height of the chart as a string in order to provide input as both like ‘100px’ or ‘100%‘. If specified as ‘100%, chart will render to the full height of its parent element.

Defaults to null

highlightColor

string

Defines the highlight color for the data point when user hover the data point.

Defaults to

highlightMode

AccumulationHighlightMode

Specifies whether point has to get highlighted or not. Takes value either ‘None ‘or ‘Point’ None: Disables the highlight. Point: highlight a point.

Defaults to None

highlightPattern

SelectionPattern

Specifies whether series or data point has to be selected. They are,

  • none: sets none as highlighting pattern to accumulation chart.
  • chessboard: sets chess board as highlighting pattern to accumulation chart.
  • dots: sets dots as highlighting pattern to accumulation chart.
  • diagonalForward: sets diagonal forward as highlighting pattern to accumulation chart.
  • crosshatch: sets crosshatch as highlighting pattern to accumulation chart.
  • pacman: sets pacman highlighting pattern to accumulation chart.
  • diagonalbackward: sets diagonal backward as highlighting pattern to accumulation chart.
  • grid: sets grid as highlighting pattern to accumulation chart.
  • turquoise: sets turquoise as highlighting pattern to accumulation chart.
  • star: sets star as highlighting pattern to accumulation chart.
  • triangle: sets triangle as highlighting pattern to accumulation chart.
  • circle: sets circle as highlighting pattern to accumulation chart.
  • tile: sets tile as highlighting pattern to accumulation chart.
  • horizontaldash: sets horizontal dash as highlighting pattern to accumulation chart.
  • verticaldash: sets vertical dash as highlighting pattern to accumulation chart.
  • rectangle: sets rectangle as highlighting pattern to accumulation chart.
  • box: sets box as highlighting pattern to accumulation chart.
  • verticalstripe: sets vertical stripe as highlighting pattern to accumulation chart.
  • horizontalstripe: sets horizontal stripe as highlighting pattern to accumulation chart.
  • bubble: sets bubble as highlighting pattern to accumulation chart.

Defaults to None

isMultiSelect

boolean

If set true, enables the multi selection in accumulation chart. It requires selectionMode to be Point.

Defaults to false

legendSettings

LegendSettingsModel

Options for customizing the legend of accumulation chart.

locale

string

Overrides the global culture and localization value for this component. Default global culture is ‘en-US’.

Defaults to

margin

MarginModel

Options to customize the left, right, top and bottom margins of accumulation chart.

selectedDataIndexes

IndexesModel[]

Specifies the point indexes to be selected while loading a accumulation chart. It requires selectionMode to be Point.

<div id='Pie'></div>
let pie: AccumulationChart = new AccumulationChart({
...
  selectionMode: 'Point',
  selectedDataIndexes: [ { series: 0, point: 1},
                         { series: 2, point: 3} ],
...
});
pie.appendTo('#Pie');

Defaults to []

selectionMode

AccumulationSelectionMode

Specifies whether point has to get selected or not. Takes value either ‘None ‘or ‘Point’ None: Disables the selection. Point: selects a point.

Defaults to None

selectionPattern

SelectionPattern

Specifies whether series or data point for accumulation chart has to be selected. They are,

  • none: sets none as selecting pattern to accumulation chart .
  • chessboard: sets chess board as selecting pattern accumulation chart .
  • dots: sets dots as selecting pattern accumulation chart .
  • diagonalForward: sets diagonal forward as selecting pattern to accumulation chart .
  • crosshatch: sets crosshatch as selecting pattern to accumulation chart.
  • pacman: sets pacman selecting pattern to accumulation chart.
  • diagonalbackward: sets diagonal backward as selecting pattern to accumulation chart.
  • grid: sets grid as selecting pattern to accumulation chart.
  • turquoise: sets turquoise as selecting pattern to accumulation chart.
  • star: sets star as selecting pattern to accumulation chart.
  • triangle: sets triangle as selecting pattern to accumulation chart.
  • circle: sets circle as selecting pattern to accumulation chart.
  • tile: sets tile as selecting pattern to accumulation chart.
  • horizontaldash: sets horizontal dash as selecting pattern to accumulation chart.
  • verticaldash: sets vertical dash as selecting pattern to accumulation chart.
  • rectangle: sets rectangle as selecting pattern.
  • box: sets box as selecting pattern to accumulation chart.
  • verticalstripe: sets vertical stripe as selecting pattern to accumulation chart.
  • horizontalstripe: sets horizontal stripe as selecting pattern to accumulation chart.
  • bubble: sets bubble as selecting pattern to accumulation chart.

Defaults to None

series

AccumulationSeriesModel[]

The configuration for series in accumulation chart.

subTitle

string

SubTitle for accumulation chart

Defaults to null

subTitleStyle

FontModel

Options for customizing the subtitle of accumulation chart.

theme

AccumulationTheme

Specifies the theme for accumulation chart.

Defaults to ‘Material’

title

string

Title for accumulation chart

Defaults to null

titleStyle

FontModel

Options for customizing the title of accumulation chart.

tooltip

TooltipSettingsModel

Options for customizing the tooltip of accumulation chart.

useGroupingSeparator

boolean

Specifies whether a grouping separator should be used for a number.

Defaults to false

width

string

The width of the chart as a string in order to provide input as both like ‘100px’ or ‘100%‘. If specified as ‘100%, chart will render to the full width of its parent element.

Defaults to null

Methods

calculateBounds

Method to calculate bounds for accumulation chart

Returns void

export

Export method for the chart.

Returns void

getModuleName

To get Module name @private

Returns string

print

Handles the print method for accumulation chart control.

Returns void

setAnnotationValue

Method to set the annotation content dynamically for accumulation.

Returns void

Events

afterExport

EmitType<IAfterExportEventArgs>

Triggers after the export completed.

animationComplete

EmitType<IAccAnimationCompleteEventArgs>

Triggers after animation gets completed for series.

annotationRender

EmitType<IAnnotationRenderEventArgs>

Triggers before the annotation gets rendered.

beforePrint

EmitType<IPrintEventArgs>

Triggers before the prints gets started.

beforeResize

EmitType<IAccBeforeResizeEventArgs>

Triggers before window resize.

chartDoubleClick

EmitType<IMouseEventArgs>

Triggers on double clicking the accumulation chart.

chartMouseClick

EmitType<IMouseEventArgs>

Triggers on clicking the accumulation chart.

chartMouseDown

EmitType<IMouseEventArgs>

Triggers on mouse down.

chartMouseLeave

EmitType<IMouseEventArgs>

Triggers while cursor leaves the accumulation chart.

chartMouseMove

EmitType<IMouseEventArgs>

Triggers on hovering the accumulation chart.

chartMouseUp

EmitType<IMouseEventArgs>

Triggers on mouse up.

legendClick

EmitType<IAccLegendClickEventArgs>

Triggers after legend clicked.

legendRender

EmitType<ILegendRenderEventArgs>

Triggers before the legend gets rendered.

load

EmitType<IAccLoadedEventArgs>

Triggers before accumulation chart load.

loaded

EmitType<IAccLoadedEventArgs>

Triggers after accumulation chart loaded.

pointClick

EmitType<IPointEventArgs>

Triggers on point click.

pointMove

EmitType<IPointEventArgs>

Triggers on point move.

pointRender

EmitType<IAccPointRenderEventArgs>

Triggers before each points for series gets rendered.

resized

EmitType<IAccResizeEventArgs>

Triggers after window resize.

selectionComplete

EmitType<IAccSelectionCompleteEventArgs>

Triggers after the selection is completed.

seriesRender

EmitType<IAccSeriesRenderEventArgs>

Triggers before the series gets rendered.

textRender

EmitType<IAccTextRenderEventArgs>

Triggers before the data label for series gets rendered.

tooltipRender

EmitType<ITooltipRenderEventArgs>

Triggers before the tooltip for series gets rendered.