• What is KendoReact
  • Getting Started
  • Server Components
  • Components
    • Animation
    • Barcodes
    • Buttons
    • Chartsupdated
    • Common Utilities
    • Conversational UIupdated
    • Data Gridupdated
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Formupdated
    • Ganttupdated
    • Gauges
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Map
    • Notification
    • OrgChartnew
    • PDF Processing
    • PDFViewer
    • PivotGrid
    • Popup
    • Progress Bars
    • Ripple
    • Scheduler
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • TaskBoard
    • Tooltips
    • TreeList
    • TreeViewupdated
    • Upload
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • Updates
  • Troubleshooting

PivotGridAxesEditorProps

Represents the props of the KendoReact PivotGridAxesEditor component.

NameTypeDefaultDescription

children?

any

The React elements that are passed as children to the rendered component.

chipList?

CustomComponent<ChipListProps>

Overrides the default chipList component.

The default component is: KendoReactChipList.

component

string | ComponentType<any>

Can be set to a React component or to the name of an HTML element, for example, input, select, and textarea. The props that are passed to component are the FieldRenderProps.

field

string

Indicates which of the three available axes are represented by the editor:

  • columnAxes
  • rowAxes
  • measureAxes

name

string

The name of the field in the Form state. Supports nested fields in the user.age and users[index].name formats.

onChange?

(event: any) => void

Called when underlying editor triggers it's onChange event and the Form update it's internal state. Useful for updating related fields.

The Form listens to this editor event and automatically keeps it's internal state up to date.

That why this event should be used only for executing custom logic.

validator?

FieldValidatorType | FieldValidatorType[]

The validation functions for the Field level. Currently, validator supports only synchronous functions. Using the array overload with inline array will cause an infinite loop - in this case use a useMemo hook to memoize the array.

value

PivotGridAxis[]

Represents the value of the AxesEditor.

The value is an array of PivotGridAxis